Matplotlib,添加另一个轴

时间:2019-01-20 12:10:51

标签: python-3.x matplotlib plot

我需要使用matplotlib添加另一个轴,但无法获得一个漂亮的图表。下面是我的代码:

x = company['Date']
y = company['Close']
x1 = WIG['Date']
y1 = WIG['Close']

fig, ax = plt.subplots()
ax.plot(x,y)

myFmt = DateFormatter("%d-%m-%y")
ax.xaxis.set_major_formatter(myFmt)


fig.autofmt_xdate()
plt.ylabel('PLN')
plt.title(name_of_company)
plt.grid(True)

plt.show()

我有一个不错的图表,但知道我需要添加数据x1 = WIG ['Date'] y1 = WIG ['Close']。

WGI ['Data']与x = company ['Date']相同。

你有什么主意吗?谢谢大家的帮助

我希望这张照片能更好地显示我需要完成的工作。副轴是WIG,我需要输入情节 enter image description here

0 个答案:

没有答案