gpt4 book ai didi

python - 在 Pandas 中重建人物传奇

转载 作者:太空狗 更新时间:2023-10-30 00:03:32 24 4
gpt4 key购买 nike

绘制图形后,我得到如下图形图例:enter image description here

DataFrame1.plot(legend=False)
patch,labels=ax.get_legend_handels_labels()
DateFrame1.legend(loc='best')
plt.show()

如何删除(Temp,2005)中的'Temp',让2005变成刚好?

DataFrame1 有三个键:Month,Year,Temp。

最佳答案

你非常接近,你只需要用岁月更新你的传奇:

ax = df.plot()

years = [2005, 2007, 2008, 2009, 2011, 2012]
# you can get years from you dataframe (but without seeing the dataframe I can't say exactly how)
# legend also accepts a Series or numpy array
ax.legend(years, loc='best')
plt.show()

关于python - 在 Pandas 中重建人物传奇,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13886019/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com