向右移动第三个 y 轴

move third y-axis to right

import matplotlib.pyplot as plt

fig, ax = plt.subplots()
fig.subplots_adjust(right=0.75)

twin1 = ax.twinx()
twin2 = ax.twinx()

#twin2.spines.right.set_position(("axes", 1.2))

p1, = ax.plot([0, 1, 2], [0, 1, 2], "b-", label="Density")
p2, = twin1.plot([0, 1, 2], [0, 3, 2], "r-", label="Temperature")
p3, = twin2.plot([0, 1, 2], [50, 30, 15], "g-", label="Velocity")

ax.set_xlim(0, 2)
ax.set_ylim(0, 2)
twin1.set_ylim(0, 4)
twin2.set_ylim(1, 65)

ax.set_xlabel("Distance")
ax.set_ylabel("Density")
twin1.set_ylabel("Temperature")
twin2.set_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())

tkw = dict(size=4, width=1.5)
ax.tick_params(axis='y', colors=p1.get_color(), **tkw)
twin1.tick_params(axis='y', colors=p2.get_color(), **tkw)
twin2.tick_params(axis='y', colors=p3.get_color(), **tkw)
ax.tick_params(axis='x', **tkw)

ax.legend(handles=[p1, p2, p3])

plt.show()

我想将 'temperature axis' (twin2) 移到右边。我试过了

twin2.spines.right.set_position(("axes", 1.2)) 

但它不工作并发送错误 ()。

而且我不希望它重叠 ()

来源:https://matplotlib.org/stable/gallery/ticks_and_spines/multiple_yaxis_with_spines.html

编辑:这显然不是错误 - 它是 a feature added in version 3.4.0


这可能是一个错误 - 因为只有在 ipython 终端上尝试 运行 twin2.spines.right.set_position(("axes", 1.2)) 时才会发生,如果您从脚本调用它则不会。也许有序的字典值没有被正确设置为属性,因为它们似乎存在:

>> twin2.spines
OrderedDict([('left', <matplotlib.spines.Spine at 0x7fc4f006a280>),
             ('right', <matplotlib.spines.Spine at 0x7fc4f006a370>),
             ('bottom', <matplotlib.spines.Spine at 0x7fc4f006a460>),
             ('top', <matplotlib.spines.Spine at 0x7fc4f006a550>)])

您可以像这样从字典中手动获取书脊来解决这个问题:

twin2.spines['right'].set_position(("axes", 1.2))

顺便说一句,如果你想改变温度,你需要在 twin1 上调用 set_positiontwin2 将移动速度轴。