jupyter noyebook 运行出现错误AttributeError: module 'statsmodels.tsa.api' has no attribute 'ARMA'
时间: 2023-06-19 19:08:45 浏览: 141
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误通常是由于引用了statsmodels的旧版本导致的。你可以尝试升级statsmodels以解决这个问题。在命令行中使用以下命令升级:
```
pip install statsmodels --upgrade
```
如果你正在使用anaconda,可以使用以下命令升级:
```
conda update statsmodels
```
如果升级后仍然出现错误,你可以尝试使用以下代码导入ARMA:
```
from statsmodels.tsa.arima_model import ARMA
```
希望这可以帮助你解决问题!
阅读全文