Create a RPrometheeArguments
object to be used by RPromethee
methods.
RPrometheeConstructor(datMat, vecWeights, vecMaximiz, prefFunction, parms,
normalize, alphaVector = NULL, band = NULL, constraintDir = NULL,
bounds = NULL, alternatives = NULL, criterias = NULL)
A matrix containing the data from criterias and alternatives.
A vector of weights for each criteria.
A logical vector to indicate if the criteria should be maximized or minimized.
A numerical vector to indicate the type of the Preference Function:
prefFunction=0
Gaussian Preference Function
prefFunction=1
Usual Preference Function
prefFunction=2
U-Shape Preference Function
prefFunction=3
V-Shape Preference Function
prefFunction=4
Level Preference Function
prefFunction=5
V-Shape Preference and Indiference Function
a numerical matrix with parameters associated to the Preference Function. They're defined as a matrix of n columns and m rows. The maximum number of parameters is 3 and m is the number of criterias. The parameters are:
Indifference Threshold (q
)
Preference Threshold (p
)
Gaussian Threshold (s
)
A boolean to normalize the index.
A numerical vector to indicate the size of the interval for each alternative in Promethee III ranking.
A numerical matrix with m rows corresponding to each criteria
and one column corresponding to the bandwitch estimated for that criteria.
This bandwitch is used for Kernel Density Estimation in Promethee IV Kernel.
By default, it is calculated using bw.nrd0
.
A character vector with the direction of constraints to
be optimized in Promethee V. The values must be combinations of >
,
<
and =
operators. If missing, it's calculated using
"<="
for all criterias.
A numeric vector used in Promethee V for the right-hand sides of the constraints.
A character vector with alternatives names.
A character vector with criterias names.
This function is used to create a RPrometheeArguments
object. This
object is used by all RPromethee methods, being necessary to include only
the arguments that are used by the desired method. The arguments
datMat
, vecWeights
, vecMaximiz
, prefFunction
,
parms
, normalize
must be specified for all methods. The
following methods use additional arguments:
RPrometheeIII
uses alphaVector
RPrometheeIVKernel
uses band
RPrometheeV
uses constraintDir
and bounds
RPrometheeI
, RPrometheeII
,
RPrometheeIII
, RPrometheeIV
,
RPrometheeIVKernel
, RPrometheeV
Other RPromethee methods: PrometheeIIIPlot
,
PrometheeIIPlot
,
PrometheeIPlot
,
PrometheeIVPlot
,
RPrometheeIII
, RPrometheeII
,
RPrometheeIVKernel
,
RPrometheeIV
, RPrometheeI
,
RPrometheeV
,
SensitivityAnalysis
,
UpdateRPrometheeAlternatives
,
UpdateRPrometheeArguments
,
WalkingWeightsPlot
,
plot,RPrometheeI-method