Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

I wanted to ask whether it was possible to use the auto.arima function to identify subset ARIMA models rather than those of pure lags? I have identified a model in Stata in subset lags that performs well and wanted to cross check this with the auto.arima() function but I can't seem to figure out if subset lags are supported.

share|improve this question

1 Answer

No, auto.arima() does not allow for subset models. The FitAR package will automatically do subset AR modelling. I don't know of any R package that does automatic subset ARMA modelling. You can do manual subsetting, of course, with the arima() command in R by setting some coefficients to zero using the fixed argument -- see the help file for details.

share|improve this answer
Ah ok thank you, I wanted to enquire after reading this paper goo.gl/x8D3f on subset model selection. Thanks again for the response. – user10745 Apr 19 '12 at 10:19
@Brandon Please, register your account and consider accepting this answer (green check mark). – chl Apr 19 '12 at 11:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.