| Model | ACF | PACF |
|---|---|---|
| AR(1) | (exponential decay) | , for (cuts off) |
| AR() | Decays exponentially/oscillates | Cuts off after lag |
| MA(1) | , for (cuts off) | Decays exponentially |
| MA() | Cuts off after lag | Decays exponentially |
| ARMA() | Decays exponentially | Decays exponentially |
Procedure
Use ACF and PACF patterns to identify the order of AR, MA, and ARMA models.
Step 1: Examine ACF
- Plot sample ACF vs lag
- Check for significance:
- Identify pattern:
- Cuts off sharply after lag → suggests MA()
- Decays exponentially → suggests AR or ARMA
Step 2: Examine PACF
- Plot sample PACF vs lag
- Check for significance:
- Identify pattern:
- Cuts off sharply after lag → suggests AR()
- Decays exponentially → suggests MA or ARMA
Step 3: Combine Information
| ACF Pattern | PACF Pattern | Suggested Model |
|---|---|---|
| Cuts off after lag | Decays exponentially | MA() |
| Decays exponentially | Cuts off after lag | AR() |
| Decays exponentially | Decays exponentially | ARMA() |
Step 4: Use EACF or Information Criteria
For ARMA models where ACF/PACF both decay:
- Use EACF to find approximate
- Compare AIC/BIC across candidate models
Sample Size
Need at least observations for reliable ACF/PACF estimates. Calculate up to lag .