我正在使用AR模型来拟合我的数据,我认为我已经成功完成了这项工作,但现在我想实际看到拟合的模型参数是什么,我遇到了一些麻烦。这是我的代码
model=ar.AR(df['price'],freq='M')
ar_res=model.fit(maxlags=50,ic='bic')
运行没有任何错误。但是当我尝试使用以下代码打印模型参数时
print ar_res.params
我收到错误
AssertionError: Index length did not match values
答案 0 :(得分:0)
我无法用当前的主人重现这个。
import statsmodels.api as sm
from pandas.util import testing
df = testing.makeTimeDataFrame()
mod = sm.tsa.AR(df['A'])
res = mod.fit(maxlags=10, ic='bic')
res.params