module 'statsmodels.tsa' has no attribute 'ARIMA'
时间: 2023-09-10 18:10:38 浏览: 402
arima模型python代码.docx
这个错误可能是因为你正在尝试从 statsmodels.tsa 模块中导入 ARIMA 类,但该模块中实际上没有 ARIMA 类。相反,statsmodels.tsa.ARIMA 已经被移除了,现在可以使用 statsmodels.api 中的 ARIMA 类。你可以尝试使用以下代码来导入 ARIMA 类:
```python
from statsmodels.tsa.arima.model import ARIMA
```
或者
```python
from statsmodels.api import ARIMA
```
这样应该可以解决你的问题。
阅读全文