为什么先知预测(尤其是年度季节性)不像情节成分中的年度季节性?

时间:2020-08-18 08:38:29

标签: python forecasting data-fitting fbprophet prophet

这是绘图组件[] [1]

的图像

这是预测值的图像[] [2]

橙色线显示年度图表[] [3]

与图像的链接为:[1]:https://i.stack.imgur.com/ATy2i.png [2]:https://i.stack.imgur.com/dSSzL.png [3]:https://i.stack.imgur.com/VWJZz.png

根据先知,我的预测应该是年度组成加上趋势。但是,我的年度组成部分与地块组成部分显示的年度季节性完全不同。
有人可以解释我的适合度或年度情节与plot_components年度相似的方式和原因。以及我的年度图拟合得如何(如图所示),导致看起来像拟合过度?

deluxe_daily_proph=deluxe.reset_index()
m2=Prophet()
m2.fit(deluxe_daily_proph)
future2=m2.make_future_dataframe(periods=50,freq='M',include_history=True )
forecast2=m2.predict(future2)
forecast2[['ds','yhat','yhat_lower','yhat_upper']].tail()
plt.plot(forecast2['ds'],forecast2['yhat'])
plt.plot(deluxe_daily_proph['ds'],deluxe_daily_proph['y'])enter code here
m2.plot_components(forecast2);

0 个答案:

没有答案