如何在使用pandas.DataFrame.plot()构建时间序列图时添加y轴标签

时间:2017-12-27 05:19:08

标签: python pandas dataframe matplotlib plot

这是我的代码。我查看了文档,但没有找到答案。

 import pandas as pd
 import matplotlib.pyplot as plt
 from datetime import datetime
 avs = pd.read_csv('daily_2004_2014.csv')
 avs = avs.set_index(pd.DatetimeIndex(avs['Date']))
 fig = plt.figure()
 avs.plot()
 plt.show()

Here is the generated image

1 个答案:

答案 0 :(得分:1)

绘图功能返回轴。

axes = avs.plot()

然后您可以以任何方式编辑轴。在你的情况下

axes.set_ylabel('Desired Label')