Note
Go to the end to download the full example code
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.