evaluation_parameters {DEXiR}R Documentation

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
)

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.

Value

list(method, norm, and, or). For NULL norm, and, and or arguments, defaults are taken depending on the method.

See Also

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

Examples

evaluation_parameters("prob", norm = norm_none)


[Package DEXiR version 1.0.2 Index]