Python 带有 2 y 轴的 matplotlib 图
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/15082682/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
matplotlib diagrams with 2 y-axis
提问by Helen Firs
In matplolib for a time line diagram can I set to y-axis different values on the left and make another y-axis to the right with other scale?
在用于时间线图的 matplolib 中,我可以将左侧的 y 轴设置为不同的值,并使用其他比例在右侧设置另一个 y 轴吗?
I am using this:
我正在使用这个:
import matplotlib.pyplot as plt
plt.axis('normal')
plt.axvspan(76, 76, facecolor='g', alpha=1)
plt.plot(ts, 'b',linewidth=1.5)
plt.ylabel("name",fontsize=14,color='blue')
plt.ylim(ymax=100)
plt.xlim(xmax=100)
plt.grid(True)
plt.title("name", fontsize=20,color='black')
plt.xlabel('xlabel', fontsize=14, color='b')
plt.show()
Can I give 2 y-axis in this plot?
我可以在这个图中给出 2 y 轴吗?
In span selector:
在跨度选择器中:
plt.axvspan(76, 76, facecolor='g', alpha=1)
I want to right text to characterize this span for example 'This is span selector' how can I make it?
我想用正确的文本来表征这个跨度,例如“这是跨度选择器”,我该怎么做?
回答by tacaswell
You want twinxexample. The gist if it is:
你想要的twinx例子。要点是:
ax = plt.gca()
ax2 = ax.twinx()
You can then plot to the first axes with
然后,您可以绘制到第一个轴
ax.plot(...)
and the second with
第二个
ax2.plot(...)
In your case (I think) you want:
在你的情况下(我认为)你想要:
import matplotlib.pyplot as plt
ax = plt.gca()
ax2 = ax.twinx()
plt.axis('normal')
ax2.axvspan(74, 76, facecolor='g', alpha=1)
ax.plot(range(50), 'b',linewidth=1.5)
ax.set_ylabel("name",fontsize=14,color='blue')
ax2.set_ylabel("name2",fontsize=14,color='blue')
ax.set_ylim(ymax=100)
ax.set_xlim(xmax=100)
ax.grid(True)
plt.title("name", fontsize=20,color='black')
ax.set_xlabel('xlabel', fontsize=14, color='b')
plt.show()

