OpenCV-Python4.7.0报这个错误AttributeError: module 'statsmodels.stats.diagnostic' has no attribute 'jarque_bera'
时间: 2023-10-18 13:17:48 浏览: 149
这个错误通常是由于 statsmodels 版本问题导致的。可能是因为你使用的 statsmodels 版本过低,而 jarque_bera() 函数需要在较高的版本中才能使用。
你可以尝试升级 statsmodels 到最新版本:
```python
pip install statsmodels --upgrade
```
如果你已经安装了最新版本的 statsmodels,但仍然遇到此错误,请检查你的代码是否使用了正确的导入方式。可以使用以下代码进行导入:
```python
from statsmodels.stats.stattools import jarque_bera
```
如果你仍然无法解决问题,请检查你的安装环境是否正确,并尝试重新安装 OpenCV 和 statsmodels。
阅读全文