CADETProcess.optimization.OptimizationResults.plot_pairwise#
- OptimizationResults.plot_pairwise(plot_evolution: bool = True, *args: Any, ax: ndarray[Axes] | None = None, setup_figure_kwargs: dict | None = None, **kwargs: Any) tuple[Figure, ndarray[Axes]][source]#
Pairwise of all optimization variables.
- Parameters:
- plot_evolutionbool, optional
If True, the Pareto front is Gplotted for each generation. Else, only final Pareto front is plotted. The default is False.
- *argsAny
Additional positional arguments passed to gen.plot_pareto.
- axnp.ndarray[plt.Axes] | None, default=None
Optional array of Matplotlib Axes. If not provided, a new figure is created.
- setup_figure_kwargsdict | None, default=None
Additional options to setup the figure.
- **kwargsAny
Additional keyword arguments passed to gen.plot_pareto.
- Returns:
- tuple[plt.Figure, np.ndarray[plt.Axes]]
A tuple containing: - The Matplotlib Figure object. - An array of Axes objects representing the subplots.