import pandas as pd from statsmodels.tsa.stattools import adfuller result = stats.adfuller(data['value'])修改
时间: 2023-11-27 22:54:26 浏览: 169
pandas DataFrame的修改方法(值、列、索引)
5星 · 资源好评率100%
你需要将代码中的`stats`改为`adfuller`,因为你已经从`statsmodels.tsa.stattools`中导入了`adfuller`函数。修改后的代码如下:
```
import pandas as pd
from statsmodels.tsa.stattools import adfuller
result = adfuller(data['value'])
```
阅读全文