NameError: name 'skewnorm' is not defined
时间: 2023-09-22 18:06:05 浏览: 124
Python中对错误NameError: name ‘xxx’ is not defined进行总结
5星 · 资源好评率100%
这个错误通常是因为你在代码中使用了skewnorm函数,但是没有导入skewnorm库。你需要在代码开头添加以下导入语句:
```python
from scipy.stats import skewnorm
```
这样就可以正确使用skewnorm函数了。如果你还没有安装scipy库,可以使用以下命令进行安装:
```python
pip install scipy
```
安装完成后,再添加上述导入语句即可。
阅读全文