Module 'scipy' has no attribute 'skew'
时间: 2023-09-16 13:06:33 浏览: 121
无需降级scipy的情况下解决AttributeError: module ‘scipy.misc’ has no attribute ‘imread’,imresize,imsave等问题
这个错误可能是因为你在使用 `scipy` 库时尝试调用 `skew` 函数,但是该函数并不是 `scipy` 库的一个属性。这可能是因为你的 `scipy` 库版本太旧,或者你的代码中存在语法错误。
你可以尝试更新你的 `scipy` 库来解决这个问题。可以使用以下命令在终端中更新 `scipy`:
```
pip install --upgrade scipy
```
如果更新后还有问题,可以考虑检查你的代码是否有误,或者尝试使用其他相关函数来替代 `skew` 函数。
阅读全文