You are reading an old version of the documentation (v2.2.2). For the latest version see https://matplotlib.org/stable/gallery/text_labels_and_annotations/titles_demo.html
Version 2.2.2
matplotlib
Fork me on GitHub

Related Topics

Titles DemoΒΆ

matplotlib can display plot titles centered, flush with the left side of a set of axes, and flush with the right side of a set of axes.

../../_images/sphx_glr_titles_demo_001.png
import matplotlib.pyplot as plt

plt.plot(range(10))

plt.title('Center Title')
plt.title('Left Title', loc='left')
plt.title('Right Title', loc='right')

plt.show()

Keywords: matplotlib code example, codex, python plot, pyplot Gallery generated by Sphinx-Gallery