季节性分解不显示日期

时间:2019-09-06 15:42:07

标签: python pandas

我正在使用以下列的数据集在python中进行季节性分解:

PatientID                int64
VariableID               int64
VariableName            object
Value                  float64
Date            datetime64[ns]
dtype: object

我得到的结果如下: enter image description here

但是,正如您所看到的,在我的x中,并非日期列中的所有值。我该如何解决?

这是我的代码:

df = df.dropna()
decomposition = sm.tsa.seasonal_decompose(df.Value, 
model='additive', freq=652)
fig = decomposition.plot()
plt.show()

非常感谢您

0 个答案:

没有答案