You are reading an old version of the documentation (v3.1.3). For the latest version see https://matplotlib.org/stable/gallery/subplots_axes_and_figures/subplot_toolbar.html
Version 3.1.3
matplotlib
Fork me on GitHub

Related Topics

Subplot ToolbarΒΆ

Matplotlib has a toolbar available for adjusting subplot spacing.

  • ../../_images/sphx_glr_subplot_toolbar_001.png
  • ../../_images/sphx_glr_subplot_toolbar_002.png
import matplotlib.pyplot as plt
import numpy as np

fig, axs = plt.subplots(2, 2)

axs[0, 0].imshow(np.random.random((100, 100)))

axs[0, 1].imshow(np.random.random((100, 100)))

axs[1, 0].imshow(np.random.random((100, 100)))

axs[1, 1].imshow(np.random.random((100, 100)))

plt.subplot_tool()
plt.show()

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