How do I change the global plot characteristics (title, size, etc)?#
Date |
Category |
---|---|
2023-12-18 22:57:51 |
Data Visualization and Postprocessing |
The plotting function return a matplotlib Axes
, which can be manipulated, for example ax = obj.plot(x=0); ax.set_title(โmy_titleโ)
.