How to Interpret ACF and PACF plots for Identifying AR, MA, ARMA, or ARIMA Models
In time series analysis, Autocorrelation Function (ACF) and the partial autocorrelation function (PACF) plots are essential in providing the model’s orders such as p for AR and q for MA to select the best model for forecasting.
The basic guideline for interpreting the ACF and PACF plots are as following:
- Look for tail off pattern in either ACF or PACF.
- If tail off at ACF → AR model → Cut off at PACF will provide order p for AR(p).
- If tail off at PACF → MA model → Cut off at ACF will provide order q for MA(q).
- Tail of at both ACF and PACF → ARMA model
Here are the basic informations when looking at ACF and PACF plots.
- The two blue dash lines pointed by purple arrows represent the significant threshold levels. Anything that spikes over these two lines reveals the significant correlations.
- When looking at ACF plot, we ignore the long spike at lag 0 (pointed by the blue arrow). For PACF, the line usually starts at 1.
- The lag axes will be different depending on the times series data.


AR MODEL
Here’s the ACF and PACF plots of the AR(1) model.
Tail off is observed at ACF plot. Thus, it’s a AR model. From PACF, cut off happens at lag 2. Thus, the order is 2. So it should be AR(2) model.
ACF Plot

PACF Plot

MA Model
Tail off at PACF. Then we know that it’s a MA model. Cut off is at lag 1 in ACF. Thus, it’s MA(1) model.
Not that there’s some more spikes that slightly go over above the threshold blue lines like around lag 2 and 4. However, we always want a simplified model. So we usually take lower lag number and significant spike like the one at lag 1.
ACF Plot

PACF Plot

ARMA Model
ACF and PACF plots of AR and MA models are very straight forward. However, for real life times series data set, some ACF and PACF plots are ambiguous.
Let’s look at the following plots.
ACF Plot

PACF Plot

In both ACF and PACF plots, it’s not clear whether they are tailing off or cutting off. That’s where ARMA comes in.
With ARMA, the orders of p and q for AR and MA can be more than one. So testing out a few p and q combinations is advised to get the better score of AIC and BIC.
To get p value for AR for ARMA model, we will look at PACF plots. The spikes are at 1 and 3. Thus it’s AR(1) and AR(3).
To get q value, we will look at ACF plot. The spikes are at 1 and 3. Thus it’s MA(1) and MA(3).
We can try out several different combinations of ARMA(1,1), ARMA(1,3), ARMA(3,1), and ARMA(3,3). Don’t worry about not getting the right orders for these ARMA models because we always do diagnostics for all the models to see their performance. In addition, we also choose the best model by their AIC and BIC scores.
ARIMA Model
The same concept of ARMA is applied in ARIMA model as well. The only difference between ARMA and ARIMA is the differencing (d) [ ARMA(p,q) vs ARIMA(p,d,q)]. Let’s say we have ARMA(1,1) model. If the time series data need differencing to attain the seasonality, then it should be differenced. Then the model will be ARIMA(1,1,1).
Hope this is helpful to anybody new to time series analysis since it can be a bit challenging topic. Have fun learning!