apply.SRMP: Apply SRMP (Simple Ranking Method using Reference Profiles)...

View source: R/SRMP.R

apply.SRMPR Documentation

Apply SRMP (Simple Ranking Method using Reference Profiles) on data

Description

Apply SRMP (Simple Ranking Method using Reference Profiles) on data

Usage

apply.SRMP(evaluations.mat, reference.profiles, weights)

Arguments

evaluations.mat

the matrix comparing alternatives based on criteria

reference.profiles

matrix containing reference profile information

weights

of different criteria

Value

alternatives ranked using SRMP

Examples

evaluations.mat <- matrix(c(41, 46, 43, -2, -4, -5.5, 4, 2, 3), nrow=3)
colnames(evaluations.mat) <- c("S", "L", "J")
rownames(evaluations.mat) <- c("x", "y", "z")
reference.profiles <- matrix(c(42, 45, -5, -3, 2, 4), nrow=2)
colnames(reference.profiles) <- c("S", "L", "J")
rownames(reference.profiles) <- c("p1", "p2")
weights <- c(1/3, 1/3, 1/3)
apply.SRMP(evaluations.mat, reference.profiles, weights)

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