apply.BWM: Function for applying the Best-Worst Method

View source: R/BWM.R

apply.BWMR 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)

RMCDA documentation built on June 8, 2025, 11:14 a.m.