导入emerma模型时的ModuleNotFoundError

问题描述 投票:0回答:1

嗨,我在尝试使用python中的ARISMA模型时遇到以下错误。有人可以帮助我理解我所缺少的东西

from statsmodels.tsa.arisma_model import ARISMA

得到的错误是,

---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
<ipython-input-10-099aced65df8> in <module>()
     28 import seaborn as sns
     29 from statsmodels.tsa.stattools import adfuller
---> 30 from statsmodels.tsa.arisma_model import ARISMA

ModuleNotFoundError: No module named 'statsmodels.tsa.arisma_model'
python
1个回答
1
投票

你的意思是说arima_model而不是arisma_model吗?

© www.soinside.com 2019 - 2024. All rights reserved.