pareto {caRamel}R Documentation

Indicates which rows are Pareto

Description

indicates which rows of the X criterion matrix are Pareto, when objectives need to be maximized

Usage

pareto(X)

Arguments

X

: matrix of objectives [NInd * NObj]

Value

Ft : vector [NInd], TRUE when the set is on the Pareto front.

Author(s)

Fabrice Zaoui

Examples

# Definition of the parameters
X <- matrix(runif(200), 100, 2)
# Call the function
is_pareto <- pareto(X)


[Package caRamel version 1.3 Index]