注意
转到结尾 以下载完整的示例代码。
具有脊柱的多 y 轴#
创建具有共享 x 轴的多 y 轴。这是通过创建 twinx
轴来完成的,将除了右侧之外的所有脊柱都设为不可见,并使用 set_position
偏移其位置。
请注意,此方法使用 matplotlib.axes.Axes
及其 Spine
s。使用非标准轴的替代方法在 Parasite Axes 演示 和 Parasite 轴演示 示例中显示。
import matplotlib.pyplot as plt
fig, ax = plt.subplots()
fig.subplots_adjust(right=0.75)
twin1 = ax.twinx()
twin2 = ax.twinx()
# Offset the right spine of twin2. The ticks and label have already been
# placed on the right by twinx above.
twin2.spines.right.set_position(("axes", 1.2))
p1, = ax.plot([0, 1, 2], [0, 1, 2], "C0", label="Density")
p2, = twin1.plot([0, 1, 2], [0, 3, 2], "C1", label="Temperature")
p3, = twin2.plot([0, 1, 2], [50, 30, 15], "C2", label="Velocity")
ax.set(xlim=(0, 2), ylim=(0, 2), xlabel="Distance", ylabel="Density")
twin1.set(ylim=(0, 4), ylabel="Temperature")
twin2.set(ylim=(1, 65), ylabel="Velocity")
ax.yaxis.label.set_color(p1.get_color())
twin1.yaxis.label.set_color(p2.get_color())
twin2.yaxis.label.set_color(p3.get_color())
ax.tick_params(axis='y', colors=p1.get_color())
twin1.tick_params(axis='y', colors=p2.get_color())
twin2.tick_params(axis='y', colors=p3.get_color())
ax.legend(handles=[p1, p2, p3])
plt.show()