还在了解ARIMA源代码的过程中对一些数据进行了预测。(我使用两个时间序列(索引的和外部的,每个都有365个数据点。)
我想比较一下ARMA和ARMAX的预测精度。
ARMA的预测过程似乎运行良好。但是,用一个额外的外部变量进行预测却不起作用:
获取ARMAX的p和q值:
arma_mod1 = sm.tsa.ARMA(indexed_df, (2,0), external_df).fit()
y = arma_mod1.params
print 'P- and Q-Values(ARMAX):'
print y
输出:
P- and Q-Values(ARMAX):
const 34.739272
0 0.000136
ar.L1.0 0.578090
ar.L2.0 0.129253
dtype: float64
获取预测值(在样本中):
start_pred = '2013-12-30'
end_pred = '2013-12-30'
period = (start_pred, end_pred)
predict_price1 = arma_mod1.predict(start_pred, end_pred, exog=True, dynamic=True)
print ('Predicted Price (ARMAX): {}' .format(predict_price1))
输出:
Traceback (most recent call last):
File "<ipython-input-102-78b3d705d411>", line 6, in <module>
predict_price1 = arma_mod1.predict(start_pred, end_pred, exog=True, dynamic=True)
File "/Applications/anaconda/lib/python2.7/site-packages/statsmodels-0.6.1-py2.7-macosx-10.5-x86_64.egg/statsmodels/base/wrapper.py", line 92, in wrapper
return data.wrap_output(func(results, *args, **kwargs), how)
File "/Applications/anaconda/lib/python2.7/site-packages/statsmodels-0.6.1-py2.7-macosx-10.5-x86_64.egg/statsmodels/tsa/arima_model.py", line 1441, in predict
return self.model.predict(self.params, start, end, exog, dynamic)
File "/Applications/anaconda/lib/python2.7/site-packages/statsmodels-0.6.1-py2.7-macosx-10.5-x86_64.egg/statsmodels/tsa/arima_model.py", line 736, in predict
start, method)
File "/Applications/anaconda/lib/python2.7/site-packages/statsmodels-0.6.1-py2.7-macosx-10.5-x86_64.egg/statsmodels/tsa/arima_model.py", line 327, in _arma_predict_out_of_sample
exog)
File "/Applications/anaconda/lib/python2.7/site-packages/statsmodels-0.6.1-py2.7-macosx-10.5-x86_64.egg/statsmodels/tsa/arima_model.py", line 293, in _get_predict_out_of_sample
X = lagmat(np.dot(exog, exparams), p, original='in', trim='both')
File "/Applications/anaconda/lib/python2.7/site-packages/statsmodels-0.6.1-py2.7-macosx-10.5-x86_64.egg/statsmodels/tsa/tsatools.py", line 328, in lagmat
raise ValueError("maxlag should be < nobs")
ValueError: maxlag should be < nobs
我对maxlag的理解是(如果之前未定义)要观察的滞后数将自动计算为:
maxlag = int(round(12*(nobs/100.)**(1/4.)
但是我不知道我在哪里可以改变这个计算或者设置maxlag的数目。
我对nobs的理解是时间步数,即我在时间序列中的值。(在我的案例中是365)。
所以这意味着我需要maxlag在哪里可以定义maxlag的数量?
在这个问题上也出现了同样的错误:ADF test in statsmodels in Python但是我不知道在哪里设置ARMAX预测的maxlag。
乐于助人
最佳答案
代码:
predict_price1 = arma_mod1.predict(start_pred, end_pred, exog=True, dynamic=True)
print ('Predicted Price (ARMAX): {}' .format(predict_price1))
必须更改为:
predict_price1 = arma_mod1.predict(start_pred, end_pred, external_df, dynamic=True)
print ('Predicted Price (ARMAX): {}' .format(predict_price1))
这样就行了!
我比较了不带
external_df
的值和它们的不同之处,这可以看作是我猜想的一个证据。