Post-process an HDF5 file

from __future__ import annotations

from gemseo import execute_post

We can post-process an HDF5 file generated from an OptimizationProblem or a Scenario with the function execute_post():

execute_post("my_results.hdf", "BasicHistory", variable_names=["y"])

Note

By default, GEMSEO saves the images on the disk. Use save=False to not save figures and show=True to display them on the screen.

Gallery generated by Sphinx-Gallery