Objective: Identify AR(p)/MA(q) signatures through autocorrelation patterns
The ACF reveals how auto correlations persist over lags, indicating the need for differencing (if autocorrelations decay slowly) or the presence of seasonality (periodic spikes). The PACF pinpoints the order of AR terms by showing where partial correlations become negligible. Together, ACF and PACF help diagnose appropriate ARIMA or seasonal ARIMA structures.
# After differencinggtemp_both |>as_tsibble() |>mutate(dTemp =difference(value)) |>ACF(dTemp) |>autoplot() +labs(subtitle ="ACF cuts off after lag 1 -> MA(1) signature")
Key Concept: Persistent ACF decay suggests differencing needed. Sharp cutoff at lag 1 after differencing implies MA(1) component.
1.2 PACF for AR Order Identification with pelt
# Lynx population analysispelt |>as_tsibble() |>PACF(Lynx, lag_max =5) |>autoplot() +labs(title ="PACF cuts off at lag 2 -> AR(2) process")