Augmented Dickey–Fuller test

From HandWiki
Short description: Time series statistical test

In statistics, an augmented Dickey–Fuller test (ADF) tests the null hypothesis that a unit root is present in a time series sample. The alternative hypothesis is different depending on which version of the test is used, but is usually stationarity or trend-stationarity. It is an augmented version of the Dickey–Fuller test for a larger and more complicated set of time series models.

The augmented Dickey–Fuller (ADF) statistic, used in the test, is a negative number. The more negative it is, the stronger the rejection of the hypothesis that there is a unit root at some level of confidence.[1]

Testing procedure

The testing procedure for the ADF test is the same as for the Dickey–Fuller test but it is applied to the model

[math]\displaystyle{ \Delta y_t = \alpha + \beta t + \gamma y_{t-1} + \delta_1 \Delta y_{t-1} + \cdots + \delta_{p-1} \Delta y_{t-p+1} + \varepsilon_t, }[/math]

where [math]\displaystyle{ \alpha }[/math] is a constant, [math]\displaystyle{ \beta }[/math] the coefficient on a time trend and [math]\displaystyle{ p }[/math] the lag order of the autoregressive process. Imposing the constraints [math]\displaystyle{ \alpha = 0 }[/math] and [math]\displaystyle{ \beta = 0 }[/math] corresponds to modelling a random walk and using the constraint [math]\displaystyle{ \beta = 0 }[/math] corresponds to modeling a random walk with a drift. Consequently, there are three main versions of the test, analogous to the ones discussed on Dickey–Fuller test (see that page for a discussion on dealing with uncertainty about including the intercept and deterministic time trend terms in the test equation.)

By including lags of the order p the ADF formulation allows for higher-order autoregressive processes. This means that the lag length p has to be determined when applying the test. One possible approach is to test down from high orders and examine the t-values on coefficients. An alternative approach is to examine information criteria such as the Akaike information criterion, Bayesian information criterion or the Hannan–Quinn information criterion.

The unit root test is then carried out under the null hypothesis [math]\displaystyle{ \gamma = 0 }[/math] against the alternative hypothesis of [math]\displaystyle{ \gamma \lt 0. }[/math] Once a value for the test statistic

[math]\displaystyle{ \mathrm{DF}_\tau = \frac{\hat{\gamma}}{\operatorname{SE}(\hat{\gamma})} }[/math]

is computed it can be compared to the relevant critical value for the Dickey–Fuller test. As this test is asymmetrical, we are only concerned with negative values of our test statistic [math]\displaystyle{ \mathrm{DF}_\tau }[/math]. If the calculated test statistic is less (more negative) than the critical value, then the null hypothesis of [math]\displaystyle{ \gamma = 0 }[/math] is rejected and no unit root is present.

Intuition

The intuition behind the test is that if the series is characterised by a unit root process then the lagged level of the series ([math]\displaystyle{ y_{t-1} }[/math]) will provide no relevant information in predicting the change in [math]\displaystyle{ y_t }[/math] besides the one obtained in the lagged changes ([math]\displaystyle{ \Delta y_{t-k} }[/math]). In this case the [math]\displaystyle{ \gamma = 0 }[/math] and null hypothesis is not rejected. In contrast, when the process has no unit root, it is stationary and hence exhibits reversion to the mean - so the lagged level will provide relevant information in predicting the change of the series and the null hypothesis of a unit root will be rejected.

Examples

A model that includes a constant and a time trend is estimated using sample of 50 observations and yields the [math]\displaystyle{ \mathrm{DF}_\tau }[/math] statistic of −4.57. This is more negative than the tabulated critical value of −3.50, so at the 95 percent level the null hypothesis of a unit root will be rejected.

Critical values for Dickey–Fuller t-distribution.
Without trend With trend
Sample size 1% 5% 1% 5%
T = 25 −3.75 −3.00 −4.38 −3.60
T = 50 −3.58 −2.93 −4.15 −3.50
T = 100 −3.51 −2.89 −4.04 −3.45
T = 250 −3.46 −2.88 −3.99 −3.43
T = 500 −3.44 −2.87 −3.98 −3.42
T = ∞ −3.43 −2.86 −3.96 −3.41
Source[2]:373

Alternatives

There are alternative unit root tests such as the Phillips–Perron test (PP) or the ADF-GLS test procedure (ERS) developed by Elliott, Rothenberg and Stock (1996).[3]

Implementations in statistics packages

  • In R, there are various packages supplying implementations of the test. The forecast package includes a ndiffs function (which handles multiple popular unit root tests),[4] the tseries package includes an adf.test function[5] and the fUnitRoots package includes an adfTest function.[6] A further implementation is supplied by the "urca" package.[7]
  • Gretl includes the Augmented Dickey–Fuller test.[8]
  • In Matlab, the adfTest function [9] is part of the Econometrics Toolbox,[10] and a free version is available as part of the 'Spatial Econometrics' toolbox[11]
  • In SAS, PROC ARIMA can perform ADF tests.[12]
  • In Stata, the dfuller command is used for ADF tests.[13]
  • In EViews, the Augmented Dickey-Fuller is available under "Unit Root Test."[14][15][16][17]
  • In Python, the adfuller function is available in the Statsmodels package[18] and the ARCH package[19] also provides an Augmented Dickey–Fuller test.
  • In Java, the AugmentedDickeyFuller class is included in SuanShu[20] available under the com.numericalmethod.suanshu.stats.test.timeseries.adf package.
  • In Julia, the ADFTest function is available in the HypothesisTests package.[21]

See also

References

  1. "Glossary of economics research". Archived from the original on March 2, 2009. https://web.archive.org/web/20090302082540/http://econterms.com/glossary.cgi?action=++Search++&query=augmented+dickey-fuller. Retrieved April 2, 2008. 
  2. Fuller, W. A. (1976). Introduction to Statistical Time Series. New York: John Wiley and Sons. ISBN 0-471-28715-6. 
  3. Elliott, G.; Rothenberg, T. J.; Stock, J. H. (1996). "Efficient Tests for an Autoregressive Unit Root". Econometrica 64 (4): 813–836. doi:10.2307/2171846. http://www.nber.org/papers/t0130.pdf. 
  4. "ndiffs {forecast} | inside-R | A Community Site for R". http://www.inside-r.org/packages/cran/forecast/docs/ndiffs. Retrieved 2020-02-23. 
  5. "R: Augmented Dickey-Fuller Test". http://finzi.psych.upenn.edu/R/library/tseries/html/adf.test.html. Retrieved 2016-06-26. 
  6. "Comparing ADF Test Functions in R · Fabian Kostadinov". https://fabian-kostadinov.github.io/2015/01/27/comparing-adf-test-functions-in-r/. 
  7. "Package 'urca'". https://cran.r-project.org/web/packages/urca/urca.pdf. 
  8. "Introduction to gretl and the gretl instructional lab". http://spot.colorado.edu/~mcnownr/gretl_lab/Introduction-to-gretl-presentation.pdf. Retrieved 2016-06-26. 
  9. "Augmented Dickey-Fuller test - MATLAB adftest". http://www.mathworks.com/access/helpdesk/help/toolbox/econ/adftest.html. Retrieved 2016-06-26. 
  10. "Econometrics Toolbox - MATLAB". http://www.mathworks.com/products/econometrics. Retrieved 2016-06-26. 
  11. "Econometrics Toolbox for MATLAB". http://www.spatial-econometrics.com/. Retrieved 2016-06-26. 
  12. David A. Dickey. "Stationarity Issues in Time Series Models". http://www2.sas.com/proceedings/sugi30/192-30.pdf. Retrieved 2016-06-26. 
  13. "Augmented Dickey–Fuller unit-root test". https://www.stata.com/manuals15/tsdfuller.pdf. Retrieved 2016-06-26. 
  14. "Memento on EViews Output". http://www.jonathanbenchimol.com/data/teaching/eviews-training/memento.pdf. Retrieved 17 June 2019. 
  15. "EViews.com • View topic - Dickey Fuller for Multiple Regression Models". http://forums.eviews.com/viewtopic.php?f=18&t=939#p3291. Retrieved 2016-06-26. 
  16. "Augmented Dickey-Fuller Unit Root Tests". http://faculty.smu.edu/tfomby/eco6375/BJ%20Notes/ADF%20Notes.pdf. Retrieved 2016-06-26. 
  17. "DickeyFuller Unit Root Test". http://www.hkbu.edu.hk/~billhung/econ3600/application/app01/app01.html. Retrieved 2016-06-26. 
  18. "statsmodels.tsa.stattools.adfuller — statsmodels 0.7.0 documentation". http://statsmodels.sourceforge.net/devel/generated/statsmodels.tsa.stattools.adfuller.html. Retrieved 2016-06-26. 
  19. "Unit Root Testing — arch 4.19+14.g318309ac documentation". https://arch.readthedocs.io/en/latest/unitroot/unitroot_examples.html#Augmented-Dickey-Fuller-Testing. 
  20. "SuanShu | Numerical Method Inc". http://www.numericalmethod.com/trac/numericalmethod/wiki/SuanShu. Retrieved 2016-06-26. 
  21. "Time series tests". https://juliastats.org/HypothesisTests.jl/latest/time_series/. Retrieved 2020-02-04. 

Further reading