Plotting utilities#
- pygmo.plotting.plot_non_dominated_fronts(points, marker='o', comp=[0, 1], axes=None)#
Plots the nondominated fronts of a set of points. Makes use of
fast_non_dominated_sorting
to compute the non dominated fronts.- Parameters
- Returns
the input axes or a new axes instance
Examples
>>> from pygmo import * >>> prob = problem(zdt()) >>> pop = population(prob, 40) >>> ax = plot_non_dominated_fronts(pop.get_f())