Python:无法导入名称ss

时间:2019-02-21 13:55:11

标签: python scipy anaconda jupyter-notebook

我正在python 3笔记本中使用jupyter。当我尝试导入以下内容时:

from scipy.stats.stats import ss

我收到以下错误

ImportError: cannot import name ss

4 个答案:

答案 0 :(得分:1)

pip install statsmodels==0.8.0rc1

或使用conda

conda install -c taugspurger statsmodels=0.8.0

答案 1 :(得分:0)

尝试升级统计信息:

py -m pip install stats --upgrade

看起来像scipy 0.17.0中的deprecated

尝试:

 py -m pip install scipy==0.19

答案 2 :(得分:0)

这是因为Scipy 0.17不推荐使用ss。

链接:https://docs.scipy.org/doc/scipy-0.19.1/reference/generated/scipy.stats.ss.html

答案 3 :(得分:0)

这是ss(a, axis)np.sum(a*a, axis)的全部实现。