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

问题描述 投票:0回答:1

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

 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

python pandas dataframe matplotlib plot
1个回答
1
投票

绘图功能返回轴。

axes = avs.plot()

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

axes.set_ylabel('Desired Label')
© www.soinside.com 2019 - 2024. All rights reserved.