我正在尝试在Python中绘制数据透视表,但在图中看不到图例。
数据透视表(test_df)在行上具有日期(索引),并且具有不同的列名,假设a,b,c,d,e和f具有每个日期的时间序列值。
当我运行下面的代码时,它看起来像预期的一样,但是没有图例。
plt.plot(test_df)
plt.ylabel('Dependent Variable')
plt.xlabel('Date')
plt.title('My plot')
plt.grid(True)
plt.legend()
plt.show()