Solved – Time series analysis (ACF, PACF)

arimaarmaautoregressivemoving averagetime series

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?

Best Answer

It looks like a plausible model, though I'd possibly start with seasonal differencing and see if the residuals from that didn't look over-differenced.

If you do go with the suggested model you have, you'd still look to see if there was autocorrelation in the residuals.