BeBraveBeCurious / BWM

Simple Best worst method implementation.

Home Page:https://doi.org/10.1016/j.omega.2015.12.001

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

BWM

This is an implementation of the Best-worst multi-criteria decision-making method. Current version implements only a linear model for inconsistent comparisons. Implementation based on https://doi.org/10.1016/j.omega.2015.12.001

Example usage:

criteriaNames <- c("quality", "price", "comfort", "safety", "style")
bestToOthers <- c(2, 1, 4, 3, 8)
worstToOthers <- c(4, 8, 4, 2, 1)

solution <- calculateWeights(criteriaNames, bestToOthers, worstToOthers)
print(solution$result$criteriaWeights)

About

Simple Best worst method implementation.

https://doi.org/10.1016/j.omega.2015.12.001


Languages

Language:Jupyter Notebook 52.8%Language:R 47.2%