标签: python pandas statsmodels
我有一些数字存储在名为“常量”
当我尝试使用
cadf = ts.adfuller(constant)
我收到了ValueError:要解压的值太多了。
我该如何解决?
谢谢!
答案 0 :(得分:4)
adfuller()函数仅接受一维时间序列数组 所以首先使用:
adfuller()
data1 = data.iloc[:,0].values