我正在使用以下列的数据集在python中进行季节性分解:
PatientID int64
VariableID int64
VariableName object
Value float64
Date datetime64[ns]
dtype: object
但是,正如您所看到的,在我的x中,并非日期列中的所有值。我该如何解决?
这是我的代码:
df = df.dropna()
decomposition = sm.tsa.seasonal_decompose(df.Value,
model='additive', freq=652)
fig = decomposition.plot()
plt.show()
非常感谢您