I'm not sure whether I've just messed up something syntactically, if so I can't figure out what.
I have the following data (res):
I can run
aa = auto.arima(res, seasonal=FALSE)
which successfully (returns ARIMA(5,0,0), but if I try
aa = auto.arima(res, seasonal=TRUE)
it runs instantaneously and returns a (0,0,0) model. Any advice what I am doing wrong?