electre1: Electre I

Description Usage Arguments Examples

Description

ELECTRE I. is multicriteria decision analysis method from family of ELECTRE methods.

Usage

1

Arguments

matrix

data.frame (n \times m) of n alternatives and m crierias

weights

data.frame of weights size 1 \times n

c
d

Examples

1
2
3
4
5
6
7
8
9
matrix <- structure(list(dist = c(6, 3, 10), 
                         food = c(10, 5, 3), atm = c(4, 4, 5),
                         serv = c(3, 4, 1)),
                         .Names = c("dist", "food", "atm","serv"), 
                    row.names = c(NA, -3L), class = "data.frame")
weights <- structure(list(X1 = c(0.1, 0.45, 0.25, 0.2)), 
                     .Names = "X1", row.names = c(NA, -4L), class = "data.frame")

electre1(matrix, weights, c=0.5, d=0.9)

jy-r/Rmcdm documentation built on May 29, 2019, 3 a.m.