向右移动第三个 y 轴

问题描述

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,"b-",label="Density")
p2,= twin1.plot([0,3,"r-",label="Temperature")
p3,= twin2.plot([0,[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()

我想将“温度轴”(twin2)向右移动。我试过了

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

但它不起作用并发送错误

error

)。

而且我不希望它重叠 (

overlap

)

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

解决方法

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


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

>> 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))

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

plot

相关问答

Selenium Web驱动程序和Java。元素在(x,y)点处不可单击。其...
Python-如何使用点“。” 访问字典成员?
Java 字符串是不可变的。到底是什么意思?
Java中的“ final”关键字如何工作?(我仍然可以修改对象。...
“loop:”在Java代码中。这是什么,为什么要编译?
java.lang.ClassNotFoundException:sun.jdbc.odbc.JdbcOdbc...