anyoptimization / pymoo

NSGA2, NSGA3, R-NSGA3, MOEAD, Genetic Algorithms (GA), Differential Evolution (DE), CMAES, PSO
https://pymoo.org
Apache License 2.0
2.21k stars 381 forks source link

Plot in separate windows #6

Closed shdotcom closed 5 years ago

shdotcom commented 5 years ago

Hi,

Is it possible to make the graph plotted in separate windows instead of inline plot. Regarding to RNSGA3 is it developped based on this paper:

Reference point based multi-objective optimization using evolutionary algorithms.

Thank you

blankjul commented 5 years ago

For plotting tutorial please have a look at https://matplotlib.org/examples/pylab_examples/multiple_figs_demo.html or other plotting libraries of your choice.

R-NSGAIII is based on: "Reference Point Based NSGA-III for Preferred Solutions" by Yash Vesikar, Kalyanmoy Deb, Julian Blank. We published it recently at the IEEE-SSCI 2018 conference and it should be available soon. It scales up for higher dimensions and provides uniform distributed solutions near to references point.

shdotcom commented 5 years ago

Thank you