Solved – Augmented Dickey-Fuller test – showing residuals are serially uncorrelated

augmented-dickey-fullerautocorrelationself-studytime seriesunit root

I ran an Augmented Dicket-Fuller test to see if there was a unit root present in my time series. I would know like to show that the residuals from the test regression are serially uncorrelated. In the output there is the Durbin-Watson statistic – is this value enough to show the uncorrelation? Or is there a better way?

enter image description here

Best Answer

No, the Dickey-Fuller test statistic does not show whether the residuals are serially correlated. To find that out, you should either

  1. manually build the test regression and extract the residuals; or
  2. extract the residuals from the output of the Dickey-Fuller test;

and then test them for autocorrelation. Breusch-Godfrey test can be used for that (but it requires a whole model, not only the residuals). Here is how you can do it in R using "lmtest" and "urca" packages:

library(lmtest)
library(urca)
bgtest(ur.df(x))

where x is your time series.