我正在尝试使用TabPy脚本来预测时间序列值。我使用了 statsmodels 库中的 ExponentialSmoothing 。
当我在jupyter笔记本电脑或cmd中执行相同的过程时,所有功能均正常运行。
但是当我尝试通过TabPy使用它时,会出现以下错误。
ImportError:无法导入名称ExponentialSmoothing
我使用的脚本 *
import pandas as pd
from statsmodels.tsa.api import ExponentialSmoothing, SimpleExpSmoothing, Holt
dates = _arg1
passengers = _arg2
y = pd.Series(data=passengers, index=dates)
fit = ExponentialSmoothing(y).fit()
fcast = fit3.forecast(1)
return fcast
任何领导都会非常感激,谢谢。