Skip to content

jakub-tomczak/BWM

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages