apply.COPELAND | R Documentation |
Apply Copeland Method
apply.COPELAND(mat, beneficial.vector)
mat |
A numeric matrix containing the values for different properties of different alternatives. |
beneficial.vector |
A numeric vector containing the column indices of beneficial criteria. Non-beneficial criteria are assumed to be the remaining columns. |
A numeric vector containing the calculated Copeland scores for each alternative.
mat <- matrix(c(80, 60, 90,
75, 85, 95,
70, 65, 85,
60, 75, 80),
nrow = 4, byrow = TRUE)
colnames(mat) <- c("Criterion 1", "Criterion 2", "Criterion 3")
beneficial.vector <- c(1, 2, 3)
apply.COPELAND(mat, beneficial.vector)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.