objnames: : vector, length nobj, of names of the objectives (optional)
maximized: : vector of logical, length nobj, TRUE if objective need to be maximized, FALSE if minimized
Examples
# Definition of the populationPop <- matrix(runif(300),100,3)# Definition of objectives to maximize (Obj1, Obj2) and to minimize (Obj3)maximized <- c(TRUE,TRUE,FALSE)# Call the functionplot_pareto(MatObj = Pop, maximized = maximized)