共享轴限制和视图#

通常会创建两个或多个共享一个轴的绘图,例如,两个具有时间作为公共轴的子图。当你在一个子图上平移和缩放时,你希望另一个子图也随之移动。为了便于操作,matplotlib Axes 支持 sharexsharey 属性。当你创建一个 subplotaxes 时,你可以传入一个关键字,指示要与哪个 Axes 共享。

share axis lims views
import matplotlib.pyplot as plt
import numpy as np

t = np.arange(0, 10, 0.01)

ax1 = plt.subplot(211)
ax1.plot(t, np.sin(2*np.pi*t))

ax2 = plt.subplot(212, sharex=ax1)
ax2.plot(t, np.sin(4*np.pi*t))

plt.show()

由 Sphinx-Gallery 生成的图库