The Ljung-Box test is widely used to test for autocorrelation remaining in the residuals after fitting a model to a time series. In this post, I look at the degrees of freedom used in such tests.
The Ljung-Box test
Suppose an ARMA(p,q) model is fitted to a time series of length T, giving a series of residuals e_1,\dots,e_T, and let the autocorrelations of this residual series be denoted by
r_k = \sum_{t=k+1}^T e_te_{t-k} \Big/ \sum_{t=1}^T e_t^2, \qquad k=1,2,\dots
The first \ell autocorrelations are used to construct the statistic
Q = T(T+2) \sum_{k=1}^\ell (T-k)^{-1}r_k^2.
This statistic was discussed by Box and Pierce (1970), who argued that if T is large, and the model parameters correspond to the true data generating process, then Q has a \chi^2 distribution with \ell degrees of freedom. Later, Ljung and Box (1978) showed that if the model is correct, but with unknown parameters, then Q has a \chi^2 distribution with \ell-p-q degrees of freedom.
Extensions to other models
These days, the Ljung-Box test is applied to a lot more models than non-seasonal ARMA models, and it is not clear what the degrees of freedom should be for other models. For example:
What if the model includes an intercept term? Should that be included in the degrees of freedom calculation?
What about a seasonal ARIMA model? Do we just count all coefficients?
Or a regression with ARMA errors? Should we include the regression coefficients when computing the degrees of freedom?
Or an ETS model? Do we count just the smoothing parameters, or do we include the states as well, or something else?
Not long ago, I had naively assumed that the correct degrees of freedom would be \ell-K where K is the number of parameters estimated. I am in good company because Andrew Harvey in Harvey (1990, p259) made exactly the same conjecture. That was what was coded in the forecast::checkresiduals() function prior to v8.21, and how the test was applied in Hyndman and Athanasopoulos (2018) and Hyndman and Athanasopoulos (2021) until February 2023. But a recent github discussion with Achim Zeilis convinced me that it is incorrect.
Let’s look at a few examples. For each model, we will simulate 5000 series, each of length 250 observations. For each series, we compute the p-value of a Ljung-Box test with \ell=10 and \ell-K degrees of freedom, for different values of K. Under the null hypothesis of uncorrelated residuals, the p values should have a uniform distribution.
Code
library(forecast)library(ggplot2)set.seed(0)# Function to simulate p-values given a DGP model and# a function to fit the model to a time seriessimulate_pvalue <-function(model, fit_fn, l=10) {## simulate seriesif(is.null(model$xreg)) { y <-simulate(model, n =250) } else { y <-simulate(model, xreg=model$xreg, n=250) }if(inherits(model, "ets")) {# If multiplicative errors, fix non-positive valuesif(model$components[1] =="M") y[y <=0] <-1e-5 }## Fit model m <-fit_fn(y)## compute p-values for various df pv <- purrr::map_vec(0:3, m=m,function(x, m) {Box.test(residuals(m), lag = l, fitdf = x, type ="Ljung-Box")$p.value } )names(pv) <-paste("K =", 0:3)return(pv)}# Function to replicate the above functionsimulate_pvalues <-function(model, fit_fn, nsim =5000, l=10) { purrr::map_dfr(seq(nsim), function(x) {simulate_pvalue(model, fit_fn, l=l) })}# Histograms of p valueshist_pvalues <-function(pv) { pv |> tidyr::pivot_longer(cols =seq(NCOL(arima_pvalues))) |>ggplot(aes(x = value)) +geom_histogram(bins =30, boundary =0) +facet_grid(. ~ name) +labs(title ="P value distributions")}# A nice table of the size of the testtable_pvalues <-function(pv) { tibble::tibble(`test size`=c(0.01, 0.05, 0.1)) %>% dplyr::bind_cols( purrr::map_df(pv, function(x) {ecdf(x)(.$`test size`)}) ) |> knitr::kable()}
ARIMA models with an intercept
We will simulate from an ARIMA(2,0,0) model with a non-zero intercept. For the Ljung-Box test, we will consider 0 \le K \le 3. Note that K=0 was the original proposal by Box and Pierce (1970), K=2=p+q counts only ARMA coefficients, and K=3 counts all parameters estimated in the model. The resulting distributions of the p-values are shown below.
Code
model <-Arima(sqrt(lynx), order=c(2,0,0))fit_fn <-function(y) {Arima(y, order =c(2, 0, 0), include.mean =TRUE)}arima_pvalues <-simulate_pvalues(model, fit_fn)hist_pvalues(arima_pvalues)
Code
table_pvalues(arima_pvalues)
test size
K = 0
K = 1
K = 2
K = 3
0.01
0.0046
0.0072
0.0124
0.0220
0.05
0.0226
0.0354
0.0534
0.0818
0.10
0.0474
0.0678
0.1016
0.1514
Clearly the one with K=2 is better than the alternatives. The table shows the empirical size of the test for different threshold levels. The empirical sizes are closest to the nominal sizes when K=2=p+q. So we shouldn’t count the intercept when computing the degrees of freedom.
Seasonal ARIMA model
Next, we will simulate from an ARIMA(0,1,1)(0,1,1)_{12} model, often called the “airline model” due to its application to the Air passenger series in Box et al. (2016). In fact, our DGP for the simulations will be a model fitted to the AirPassengers data set. Again, we consider 0\le K \le 3. There are two parameters to be estimated.
Code
model <-Arima(log(AirPassengers), order=c(0,1,1), seasonal=c(0,1,1))fit_fn <-function(y) {Arima(y, order =c(0,1,1), seasonal=c(0,1,1))}sarima_pvalues <-simulate_pvalues(model, fit_fn)hist_pvalues(sarima_pvalues)
Code
table_pvalues(sarima_pvalues)
test size
K = 0
K = 1
K = 2
K = 3
0.01
0.0100
0.0170
0.0282
0.0456
0.05
0.0484
0.0684
0.1018
0.1452
0.10
0.0882
0.1218
0.1774
0.2526
Interesting. Although there are two parameters here, the tests with K=0 and K=1 do better than K=2. I would have expected K=p+q+P+Q to be the right choice, but the test with K=2 has empirical size about twice the nominal size.
As a guess, perhaps the seasonal parameters aren’t having an effect with \ell=10. We can test what happens for larger \ell by setting \ell=24 (covering two years), and repeating the exercise.
I was expecting K=2 to do best there, but not so. K=1 is the most uniform, and K=0 gives empirical sizes closest to the nominal sizes, with the results getting worse as K increases. Perhaps always setting K=p+q would be a sensible strategy for ARIMA models, even if they contain seasonal components. This needs some theoretical analysis.
Regression with ARMA errors
We will simulate from a linear trend model with AR(1) errors. Here, K=1 counts only ARMA coefficients, while K=3 counts all parameters estimated. The resulting distributions of the p-values are shown below.
Code
model <-Arima(10+seq(250)/10+arima.sim(list(ar=0.7), n=250),order =c(1,0,0), xreg =seq(250))fit_fn <-function(y) {Arima(y, order =c(1,0,0), include.constant =TRUE, xreg =seq(250))}regarima_pvalues <-simulate_pvalues(model, fit_fn)hist_pvalues(regarima_pvalues)
Code
table_pvalues(regarima_pvalues)
test size
K = 0
K = 1
K = 2
K = 3
0.01
0.0072
0.0104
0.0176
0.0294
0.05
0.0310
0.0532
0.0782
0.1200
0.10
0.0696
0.0996
0.1478
0.2150
The test with K=1 looks the most uniform, with the size of the test closest to the nominal values. So only counting ARMA coefficients seems to be correct here.
Regression model
Next, we will consider a linear trend model with iid errors. That is the same as the previous model, but with a simpler error structure.
The test with K=0 looks best. If we think of a regression model as a RegARIMA model with ARIMA(0,0,0) errors, this is consistent with the previous results, setting K=p+q.
ETS(A,N,N) model
Now let’s try an ETS(A,N,N) model, again using 5000 series each of length 250. If we count only the smoothing parameter, K=1, but if we count all estimated parameters, K=2. The distributions of p-values are shown below.
Code
model <-ets(fma::strikes, "ANN")fit_fn <-function(y) {ets(y, model ="ANN", damped =FALSE)}ets_pvalues <-simulate_pvalues(model, fit_fn)hist_pvalues(ets_pvalues)
Code
table_pvalues(ets_pvalues)
test size
K = 0
K = 1
K = 2
K = 3
0.01
0.0064
0.0112
0.0174
0.0316
0.05
0.0334
0.0522
0.0778
0.1196
0.10
0.0702
0.0960
0.1442
0.2098
K=1 looks about right. That makes sense as an ETS(A,N,N) model is equivalent to an ARIMA(0,1,1) model.
ETS(M,N,N) model
Next, let’s try an ETS(M,N,N) model, which has no ARIMA equivalent, but which has one smoothing parameter and one initial state to estimate.
Code
model <-ets(fma::strikes, "MNN")fit_fn <-function(y) {ets(y, model ="MNN", damped =FALSE)}ets_pvalues <-simulate_pvalues(model, fit_fn)hist_pvalues(ets_pvalues)
Code
table_pvalues(ets_pvalues)
test size
K = 0
K = 1
K = 2
K = 3
0.01
0.0054
0.0084
0.0172
0.0308
0.05
0.0334
0.0548
0.0814
0.1274
0.10
0.0708
0.1062
0.1520
0.2136
Again, K=1 appears to be the best.
ETS(A,A,N) model
An ETS(A,A,N) model is equivalent to an ARIMA(0,2,2) model, so I expect this one to need K=2.
Code
model <-ets(fma::strikes, "AAN")fit_fn <-function(y) {ets(y, model ="AAN", damped =FALSE)}ets_pvalues <-simulate_pvalues(model, fit_fn)hist_pvalues(ets_pvalues)
Code
table_pvalues(ets_pvalues)
test size
K = 0
K = 1
K = 2
K = 3
0.01
0.0034
0.0062
0.0106
0.0172
0.05
0.0180
0.0308
0.0514
0.0802
0.10
0.0430
0.0658
0.1008
0.1486
This time, my conjecture is correct, and K=2 works well.
ETS(A,A,A) model
Finally, we will check a seasonal ETS model
Code
model <-ets(log(AirPassengers), model="AAA", damped=FALSE)fit_fn <-function(y) {ets(y, model ="AAA", damped =FALSE)}ets_pvalues <-simulate_pvalues(model, fit_fn)hist_pvalues(ets_pvalues)
Code
table_pvalues(ets_pvalues)
test size
K = 0
K = 1
K = 2
K = 3
0.01
0.0178
0.0276
0.0396
0.0602
0.05
0.0634
0.0916
0.1360
0.1942
0.10
0.1206
0.1672
0.2244
0.3078
Here there are 3 smoothing parameters, and 13 initial states to estimate. So I was expecting K=3 to do best, but it is the worst. Instead, K=0 is the best. I’m not sure what to make of this result.
Conclusions
Based only on this empirical evidence:
For ARIMA models, use \ell-p-q degrees of freedom.
For seasonal ARIMA models, it appears that \ell-p-q also gives the best results.
For regression with ARIMA errors, use \ell-p-q degrees of freedom.
For OLS regression, use \ell degrees of freedom.
For non-seasonal ETS models, use K= the number of smoothing parameters.
For seasonal ETS models, use K=0.
The last two of these appear to be contradictory, and it is not clear why.
It seems like this might be a good project for a PhD student to explore. In particular, can these suggestions based on empirical evidence be supported theoretically? It would also be good to explore other models such as TBATS, ARFIMA, NNETAR, etc.
For now, I might avoid teaching the Ljung-Box test, and just get students to look at the ACF plot of the residuals instead.
Other literature
Kim et al. (2004) shows that Q \sim \chi^2_\ell for an AR(1) model with ARCH errors.
McLeod and Li (1983) consider the equivalent test applied to autocorrelations of squared residuals, and show that Q^* \sim \chi^2_\ell.
Mahdi (2016) discusses a variation on the LB test for seasonal ARIMA models considering only autocorrelations at the seasonal lags.
Several other portmanteau tests (i.e., based on multiple autocorrelations) are available, and perhaps we should be using them and not the older Ljung-Box test. See Mahdi (2021) for some recent developments.
References
Box, George E P, Gwilym M Jenkins, Gregory C Reinsel, and Greta M Ljung. 2016. Time Series Analysis: Forecasting and Control. 5th ed. John Wiley; Sons.
Box, George E P, and David A Pierce. 1970. “Distribution of Residual Autocorrelations in Autoregressive-Integrated Moving Average Time Series Models.”Journal of the American Statistical Association 65 (332): 1509–26. https://doi.org/10.2307/2284333.
Harvey, Andrew C. 1990. Forecasting, Structural Time Series Models and the Kalman Filter. Cambridge University Press.
Hyndman, Rob J, and George Athanasopoulos. 2018. Forecasting: Principles and Practice. 2nd ed. Melbourne, Australia: OTexts. OTexts.org/fpp2.
Kim, Eunhee, Jeongcheol Ha, Youngsook Jeon, and Sangyeol Lee. 2004. “Ljung-Box Test in Unit Root AR-ARCH Model.”Communications for Statistical Applications and Methods 11 (2): 323–27. https://doi.org/10.5351/ckss.2004.11.2.323.
Ljung, Greta M, and George E P Box. 1978. “On a Measure of Lack of Fit in Time Series Models.”Biometrika 65 (2): 297–303. https://doi.org/10.1093/biomet/65.2.297.
Mahdi, Esam. 2016. “Portmanteau Test Statistics for Seasonal Serial Correlation in Time Series Models.”SpringerPlus 5 (1): 1485. https://doi.org/10.1186/s40064-016-3167-4.
McLeod, A I, and W K Li. 1983. “Diagnostic Checking ARMA Time Series Models Using Squared-Residual Autocorrelations.”Journal of Time Series Analysis 4 (4): 269–73. https://doi.org/10.1111/j.1467-9892.1983.tb00373.x.