【发布时间】:2022-10-22 23:26:56
【问题描述】:
我正在尝试在时间序列数据集上使用 ARIMA 算法。一切都很好,直到我初始化模型。
初始化 ARIMA 模型后,我收到错误消息:
28 def __init__(self, *args, **kwargs):
---> 29 raise NotImplementedError(ARIMA_DEPRECATION_ERROR)
NotImplementedError:
statsmodels.tsa.arima_model.ARMA and statsmodels.tsa.arima_model.ARIMA have
been removed in favor of statsmodels.tsa.arima.model.ARIMA (note the .
between arima and model) and statsmodels.tsa.SARIMAX.
statsmodels.tsa.arima.model.ARIMA makes use of the statespace framework and
is both well tested and maintained. It also offers alternative specialized
parameter estimators.
请帮我弄清楚。
【问题讨论】:
标签: time-series arima