如何将图例条目添加到同一图例框中?

时间:2019-07-19 21:21:12

标签: python plot legend

我正在像这样绘制数据:  lines1 = ax1.plot(x, df[[col for col in df.columns if 'level' in col]]) ax2 = ax1.twinx() lines2 = ax2.plot(x, df[[col for col in df.columns if 'status' in col]])

我添加了一个这样的图例:plt.legend(lines1, ('a','b'), loc='best')

如何将lines2的图例条目添加到同一图例框中?

0 个答案:

没有答案