如何在Python中预测日期以及某些内容?

时间:2019-05-12 17:02:17

标签: python-3.x time-series

我有时间序列数据,这两列是流量密度和日期。我希望预测接下来7天的密度。

我正在使用arime时间序列预测。我可以预测密度,但是我想预测密度随时间的变化。怎么做到呢?

1 个答案:

答案 0 :(得分:0)

具有RNN(LSTM)或FBProphet

GO
这是FBProphet的出色作品:
https://towardsdatascience.com/a-quick-start-of-time-series-forecasting-with-a-practical-example-using-fb-prophet-31c4447a2274


这是LSTM的一项很好的工作:
https://colah.github.io/posts/2015-08-Understanding-LSTMs/


但是,您也可以查看ARIMA变体。