ImportError:无法从“ statsmodels.tsa.seasonal”导入名称“ STL”

时间:2019-11-19 07:34:49

标签: jupyter-notebook statsmodels loess

我现在遇到这个问题,我无法从statsmodels导入STL。我曾尝试卸载statsmodels,因为建议在类似问题的某个地方进行,但是这是不可能的,至少是我这样做的方式: !pip卸载statsmodels-不起作用。

2 个答案:

答案 0 :(得分:2)

似乎statsmodels的STL函数未包含在该库的最新稳定版本(0.10.2)中,但包含在开发版本(0.11.0dev0)中。

您可以使用以下命令构建和安装此特定版本:pip install git+https://github.com/statsmodels/statsmodels.git

为此,如果您还没有一个c编译器,请在此处进行说明:https://www.statsmodels.org/dev/install.html#installation-from-source

我还发现了这个看起来很有前途的软件包:https://github.com/jrmontag/STLDecompose

答案 1 :(得分:0)

使用此:

pip install statsmodels==0.12.1