Method used to summarize the results of the evaluations, passing additional arguments in the summary method the performance metrics is evaluated.
methods
summary(object,...)## S4 method for signature 'nsga'summary(object,...)## S4 method for signature 'nsga1'summary(object,...)## S4 method for signature 'nsga2'summary(object,...)## S4 method for signature 'nsga3'summary(object,...)
Arguments
object: Objects of either class nsga1 , nsga2 , or nsga3 .
...: other arguments passed on to methods. Passing "reference_dirs"
as arguments will evaluate the performance metrics Hypervolumen, Generational Distance, and Inverse Generational Distance.
Returns
A summary of the values resulting from the execution of an algorithm.
Examples
# Where 'out' is an object of class nsga1, nsga2, or nsga3## summary(out)## For the evaluation of the metrics, pass the reference point## ref_points <- generate_reference_points(3,12)# summary(out, reference_dirs = ref_points)