apply.BWM {RMCDA} | R Documentation |
Function for applying the Best-Worst Method
Description
Function for applying the Best-Worst Method
Usage
apply.BWM(
criteria.lst,
worst.criteria,
best.criteria,
best.criteria.preference,
worst.criteria.preference
)
Arguments
criteria.lst |
list of criteria |
worst.criteria |
the worst criteria |
best.criteria |
the best criteria |
best.criteria.preference |
the comparison of the best criteria to others |
worst.criteria.preference |
the comparison of the worst criteria to others |
Value
the result of BWM
Examples
c <- c("C1", "C2", "C3")
w <- "C1"
b <- "C3"
bcp <- c(8, 2, 1)
wcp <- c(1, 5, 8)
apply.BWM(c, w, b, bcp, wcp)
[Package RMCDA version 0.3 Index]