Learn R Programming

DEXiR (version 1.0.2)

evaluation_parameters: evaluation_parameters

Description

Make a list containing parameters of DEXi evaluation. The parameters determine which method and normalization/aggregation functions should be used by evaluate().

Usage

evaluation_parameters(
  method = EnumEvalMethod,
  norm = NULL,
  and = NULL,
  or = NULL
)

Value

list(method, norm, and, or). For NULL

norm, and, and or arguments, defaults are taken depending on the method.

Arguments

method

One of: "set" (default), "prob", "fuzzy" or "fuzzynorm".

norm

Some normalization function of the form function(num_vector), or NULL.

and

Some conjunctive aggregation function of the form function(num_vector), or NULL.

or

Some disjunctive aggregation function of the form function(num_vector), or NULL.

See Also

evaluate, normalize_function(), norm_none(), norm_max(), norm_sum(), and_function(), or_function().

Examples

Run this code
evaluation_parameters("prob", norm = norm_none)

Run the code above in your browser using DataLab