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