季节性分解问题。无法与日期时间索引的数据框一起使用

时间:2019-12-10 17:57:59

标签: python-3.x dataframe time-series

我一直在尝试使用tsa.seasonal_decompose分解时间序列(frequency ='D')。但是,它会引发如下错误。 以下是数据框的详细信息。我可以使用绘图功能对其进行绘图,但是无法分解。

enter image description here

enter image description here

但是当我执行

decomposition = sm.tsa.seasonal_decompose(Final_2, model='additive')

fig = decomposition.plot()
fig.set_figwidth(12)
fig.set_figheight(8)
fig.suptitle('Decomposition of time series')
plt.show()

我收到以下错误

enter image description here

请帮助我确定我做错了什么。

0 个答案:

没有答案