apply.DEMATEL {RMCDA} | R Documentation |
Apply DEMATEL method
Description
Apply DEMATEL method
Usage
apply.DEMATEL(comparisons.mat)
Arguments
comparisons.mat |
the matrix containing information related to pairwise comparisons of criteria |
Value
a list containing two vectors one holding D-R and the other D+R
Examples
comparisons.mat <- matrix(c(0, 3, 3, 4,
1, 0, 2, 1,
1, 2, 0, 2,
1, 2, 1, 0), nrow=4)
rownames(comparisons.mat)<-c("Price/cost", "Storage Space", "Camera", "Processor")
colnames(comparisons.mat)<-c("Price/cost", "Storage Space", "Camera", "Processor")
apply.DEMATEL(comparisons.mat)
[Package RMCDA version 0.3 Index]