From my model selection based on information criteria such as SBIC returns me a ARMA(0,0) model. Should I choose it or reject it? and Why?
Need some guidance on this.
From my model selection based on information criteria such as SBIC returns me a ARMA(0,0) model. Should I choose it or reject it? and Why?
Need some guidance on this.
It seems that your data is "white noise", so the information criterion suggests you an ARMA(0,0) model.
For example in R:
library(forecast)
set.seed(123)
d<-rnorm(1000)
auto.arima(d)
gives you an ARMA(0,0) model. So there seems to be no structure in your data which can be exploited in the context of an ARMA model.