子图间距和边距#

使用 pyplot.subplots_adjust 调整边距和子图的间距。

注意

还有一个工具窗口可以交互式地调整显示图形的边距和间距。可以通过工具栏或调用 pyplot.subplot_tool 来打开它。

subplots adjust
import matplotlib.pyplot as plt
import numpy as np

# Fixing random state for reproducibility
np.random.seed(19680801)

plt.subplot(211)
plt.imshow(np.random.random((100, 100)))
plt.subplot(212)
plt.imshow(np.random.random((100, 100)))

plt.subplots_adjust(bottom=0.1, right=0.8, top=0.9)
cax = plt.axes((0.85, 0.1, 0.075, 0.8))
plt.colorbar(cax=cax)

plt.show()

Sphinx-Gallery 生成的图库