0

这是情节组件的图像 [][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_componentsyearly 不相似的方式和原因。我的年度情节究竟是如何拟合的(如图所示),因为它似乎过度拟合?

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);
4

0 回答 0