gpt4 book ai didi

python - FB Prophet 按分钟预测

转载 作者:行者123 更新时间:2023-12-03 08:49:34 24 4
gpt4 key购买 nike

我正在尝试使用 Prophet 进行分钟预测。但我得到了奇怪的输出。任何有关如何在 Prophet 中按分钟进行预测的建议或改进我的代码的建议将不胜感激!

数据采用 FB Prophet 格式。

df_min.head()
ds y
0 2020-01-17 14:21:00 166.380
1 2020-01-17 14:22:00 166.335
2 2020-01-17 14:23:00 166.315
3 2020-01-17 14:24:00 166.320
4 2020-01-17 14:25:00 166.355

df_min 数据帧中有 100 分钟。下面,train_df_min 数据帧的时间为 30 分钟...

prediction_size = 30
train_df_min = df_min[:-prediction_size]

现在尝试预测...

q = Prophet(daily_seasonality=True)
q.fit(train_df_min)

future2 = q.make_future_dataframe(periods=60, freq='1min')
forecast2 = q.predict(future2)
forecast2.tail()

enter image description here

图表输出...

enter image description here

最佳答案

将分钟数据转换为小时、每周、每月等。然后比较准确性,采用给出更准确预测的频率。

关于python - FB Prophet 按分钟预测,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59843459/

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