如何使用statsmodel解决以下错误?

时间:2019-04-07 17:39:26

标签: python attributeerror holtwinters

我正在使用statsmodel版本0.9.0和Jupiter笔记本来运行SimpleExpSmooting和Holtwinters模型,并且都获得属性错误_get_prediction_index

尝试重新安装statsmodel软件包

from statsmodels.tsa.holtwinters import SimpleExpSmoothing
fit2 = SimpleExpSmoothing(np.asarray(Train['Count']))
fit2._index = pd.to_datetime(Train.index)
pred = fit2.fit()
y_hat_avg['SES'] = pred.forecast(len(valid))

预期结果将是正确的预测。而是出现以下错误:

  

AttributeError:“ SimpleExpSmoothing”对象没有属性   '_get_prediction_index'。

任何指针,TIA。

0 个答案:

没有答案