Statsmodels: AttributeError: module object has no attribute x13

2024-05-18 14:29:50 发布

您现在位置:Python中文网/ 问答频道 /正文

我正在用Python实现时间序列的季节ARIMA预测。我使用的是Statsmodels 0.7.0。

到目前为止,我所做的是:

import statsmodels.api  as sm
res= sm.tsa.x13.x13_arima_select_order(time_series)

但我有个错误:

AttributeError: 'module' object has no attribute 'x13'

我不知道怎么修理它。


Tags: importapias时间res序列selectsm

热门问题