dominate {caRamel} | R Documentation |
calculates the successive Pareto fronts of a population (classification "onion peel"), when objectives need to be maximized.
dominate(matobj)
matobj |
: matrix [ NInd , NObj ] of objectives |
f : vector of dimension NInd of dominances
Fabrice Zaoui
# Definition of the parameters
matobj <- matrix(runif(200), 100, 2)
# Call the function
pareto_rank <- dominate(matobj)