1

I have this monthly time series with pronounced seasonality and a bit of trend:

enter image description here

The ACF and PACF for 4 years (48 months) are:

enter image description here

  1. Can I suppose that the data don't need transformations like: log(data), diff(data)...?

    ACF: A spike at lag 12 in the ACF but no other significant spikes.
    PACF: ?

  2. R proposes ARIMA(0,0,0)(1,0,0)[12]. Could it be a good model?

  • If your using an ARMA and the data is not stationary and/or not well approximated with a conditional normal then you would want to transform it. In your case it is hard to tell (about the normality part...it looks stationary. You could formally test stationarity if it would make you feel better though). The resulting ARMA would assume it is possible for the series to go below 0. If that is not posible with your data and the ARMA forecasts/fitted values go below 0 then maybe log transform. 2. Cannot be answered until you define what "good" means – Zachary Blumenfeld Jan 07 '16 at 01:49