我的情节差不多,但是有问题。第一个:x标签不显示。第二个问题:我不能在图例中添加第二行的名称。我只有一个名字(关闭),我还需要'KGHM'。
fig, ax = plt.subplots()
ax.plot(x,y)
ax2 = ax.twinx()
ax2.plot(x1,y1, 'y-')
myFmt = DateFormatter("%d-%m-%y")
ax.xaxis.set_major_formatter(myFmt)
fig.autofmt_xdate()
plt.tight_layout()
plt.xlabel('PLN',size=10)
plt.ylabel('Points',size=10)
plt.title('KGHM')
ax.grid(True)
ax.legend()
plt.show()
感谢帮助!