module 'statsmodels.api' has no attribute 'test_ind'
时间: 2023-07-06 17:22:33 浏览: 111
AttributeError: module 'tensorflow.compat.v1' has no attribute '
这个错误可能是因为 statsmodels 模块中没有名为 test_ind 的属性。你可以检查一下你的代码中是否有类似于以下的语句:
```python
import statsmodels.api as sm
...
sm.test_ind(...)
```
如果是这样的话,可能是因为你使用了旧版本的 statsmodels 模块,该模块中没有 test_ind 属性。你可以尝试更新 statsmodels 模块到最新版本,可以使用以下命令:
```
pip install --upgrade statsmodels
```
如果你仍然遇到该错误,可以尝试查看 statsmodels 模块的文档,确认该模块中是否有名为 test_ind 的属性。
阅读全文