1、导包
import matplotlib.pyplot as plt
2、准备数据
x=df.index.tolist()
y1=df['列标签1'].values.tolist()
y2=df['列标签2'].values.tolist()
3、准备画布
fig=plt.figure(figsize=(20,8),dpi=80)
ax=fig.add_subplot(1,1,1) #添加axes坐标轴实例
4、绘制第一个y轴
line1=ax.plot(x,y1,label='y1')
ax.set_xlabel='日期'
ax.set_ylabel='y1'
ax.legend(loc=0)
5、绘制第二个y轴
ax2=ax.twinx()
line2=ax2.plot(x,y2,label='y2')
ax.set_ylabel='y2'
ax.legend(loc=1)
6、合并图例
lines=line1+line2
labels=[label.get_label() for lable in lines]
ax.legend(lines,labels)