gpt4 book ai didi

python - 在 Pandas 图上标记事件点

转载 作者:太空宇宙 更新时间:2023-11-04 03:50:13 24 4
gpt4 key购买 nike

我正在绘制一些二维时间序列数据,我想用 X 或其他标记在绘图上标记特定日期。例如,如果我有过去 6 个月每个日期的所有数据,并且我想指出圣诞节在该图中的位置。完成此操作的最简单方法是什么?我可以手动完成,但更愿意在我的代码中添加一些自动化的东西。

编辑:到目前为止我的尝试。不确定是否有更好的方法。我在比较日期对象时遇到了一些问题,这就是比较字符串按原样拆分的原因。

filt1.plot(figsize=(16,16))
filt3=filtered[(filtered.index.year==2012)&(filtered.index.month==12)&(filtered.index.day==25)]["Income_MA"]
filt3.plot(style="ro")

最佳答案

跟进 tcaswell 的评论,这样的事情可能对你有用?

df = pd.Series(np.random.rand(180), index=pd.date_range(start=pd.datetime(2000, 9, 1), periods=180, freq='D'))
xmas_date = pd.datetime(2000, 12, 25)

myax = df.cumsum().plot()
ylims = myax.get_ylim()
myax.vlines(xmas_date, ylims[0], ylims[1])
myax.annotate("Xmas", xy=(xmas_date, ylims[1]),
xytext=(-12, 5),
textcoords='offset points')
myax.set_ylim(ylims)

给予

enter image description here

这是一个脆弱的解决方案,因为我已经手动设置了一个日期来注释,但是将代码包装在一个函数中并为您感兴趣的每个日期调用它应该很容易。

关于python - 在 Pandas 图上标记事件点,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21638727/

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