adfuller test收到ValueError:解压缩的值太多了

时间:2017-11-19 11:27:20

标签: python pandas statsmodels

我有一些数字存储在名为“常量”

的变量中

enter image description here

当我尝试使用

测试均值回归时
cadf = ts.adfuller(constant)

我收到了ValueError:要解压的值太多了。

我该如何解决?

谢谢!

1 个答案:

答案 0 :(得分:4)

adfuller()函数仅接受一维时间序列数组 所以首先使用:

data1 = data.iloc[:,0].values