# 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 <code>Axes</code>, which can be manipulated, for example <code>ax = obj.plot(x=0);  ax.set_title('my_title')</code>.