Augmented Dickey-Fuller Test

In Dickey-Fuller Test we describe the Dickey-Fuller test which determines whether an AR(1) process has a unit root, i.e. whether it is stationary. We now extend this test to AR(p) processes.

For the AR(1) process

image268z

we take the first difference to obtain the equivalent form

image271z

where Δyi = yi – yi-1 and β = φ – 1, and test the hypothesis

H0: β = 0 (equivalent to φ = 1)

H1: β < 0 (equivalent to φ < 1)

If |φ| = 1, we have what is called a unit root (i.e. the time series is not stationary). We have three versions of the test.

Type 0 No constant, no trend Δyiβyi-1 + εi
Type 1 Constant, no trend Δyiβ0 + βyi-1 + εi
Type 2 Constant and trend Δyi = β0 + βyi-1 + β2 i+ εi

The extension to AR(p) processes has the following three versions.

Type 0 No constant, no trend image053c
Type 1 Constant, no trend image054c
Type 2 Constant and trend image055c

Once you know how many lags to use, the augmented test is identical to the simple Dickey-Fuller test. We can use the Akaike Information Criterion (AIC) or Bayesian Information Criteria (BIC) to determine how many lags to consider, as described in Comparing ARIMA Models.

Thus we can now use the full version of the ADFTEST function which was introduced in Dickey-Fuller Test.

Real Statistics Function: The Real Statistics Resource Pack provides the following array function where R1 contains a column of time series data.

ADFTEST(R1, lab, lag, criteria, type, alpha): returns an 8 × 1 range which contains the following values: tau-statistic, tau-critical, yes/no (stationary or not), AIC value, BIC value, # of lags (p), the first-order autoregression coefficient and estimated p-value.

If lab = TRUE (default is FALSE), the output consists of a 8 × 2 range whose first column contains labels. type = the test type (0, 1, 2, default is 1). The default value for alpha is .05.

The arguments lag and criteria, which were not used for the Dickey-Fuller Test, are defined as follows:

  • lag = the maximum number of lags to use in the test (default 0)
  • criteria = “none” : no criteria is used, and so p is set to the value of lag
  • criteria = “aic” : the AIC is used to determine the number of lags p (where p lag)
  • criteria = “bic” : the BIC is used to determine the number of lags p (where plag)

To specify the criteria, you can use “AIC” or 1 instead of “aic”, you can use “BIC” or 2 instead of “bic” and you can use “” or 0 instead of “none”.

If lag < 0 then lag will automatically be set to value =Round(12*(n/100)^.25,0), as proposed by Schwert, where n = the number of elements in the time series.

To specify the test type, you can use “” or “none” instead of 0, you can use “drift” or “constant” instead of 1 and you can use “trend” or “both” instead of 2.

Example 1: Determine whether the data in column A of Figure 1 has a unit root based on a model without trend based on the Schwert estimate for the maximum number of lags using the AIC criteria. Also, determine whether there is a unit root based on a model with trend and a maximum number of lags equal to 7 using the AIC criteria.

Time series ADF

Figure 1 – Time Series

Here range J4:K8 contains the array formula =DescStats(A3:A22,TRUE). We see that the mean value of the time series is 2.376, and so we conclude that the time series likely has a non-constant mean. We could confirm this by using a t-test to see whether the population mean is significantly different from zero.

We now use the array formula =ADFTEST(A3:A22,TRUE,-1) to show the results of the ADF test without trend. The -1 means that we are using the Schwert estimate for the maximum number of lags. We are also using the default type = 1, which results in the test for constant without trend. As we can see from range P4:P11 in Figure 2, since tau-stat > tau-crit, the time series is not stationary.

ADF Test Excel

Figure 2 – ADF Test

Note that the above formula effectively uses a maximum lag count of 8, which can seen by using the formula =ROUND(12*(K4/100)^0.25,0) in cell K10 from Figure 1.

Looking at the chart in Figure 1, it appears that the time series has a trend, and so we repeat the ADF Test with constant and trend to get the results shown in range S4:T11 of Figure 2 using the array formula =ADFTEST(A3:A22,TRUE,7,”aic”,2). Here type = 2 (constant and trend) and maximum number of lags = 7. Note that we didn’t use 8 as the maximum number of lags since that would produce error values (based on insufficient degrees of freedom in the underlying regression analysis).

Real Statistics Data Analysis Tool: As explained in Time Series Testing Tools, the Time Series Testing data analysis tool can be used to perform the Dickey-Fuller Test. In fact, it can also be used to perform the Augmented Dickey-Fuller Test.

70 thoughts on “Augmented Dickey-Fuller Test”

      • ADF test has another parameter. Here above it is p. Using ADF test in R the parameter is called k. I have time series data. Putting them into auto.arima I get that the best fitting model is ARMA(2,3). Auto.arima finds a model which minimizes Akaike criterion (a best fitting model in that sense).
        Model ARMA(2,3) is not always stationary (it is if the roots of the auto-regressive polynomial are outside unit circle). May I use now ADF test to check if my series is stationary? If yes what parameter p (see above) should I use? The model above with sum of delta y_t I do not recognize. Is it AR(p) or ARMA(1,p)?

        Reply
        • Hello Zbych,
          Are you saying that the implementation of the ADF test in R has a parameter k that is omitted from the Real Statistics implementation? What is the definition of k?
          Charles

          Reply
      • Ok. After some calculations I see that the model above is AR(p) (as you wrote). So in my data I should use ADF test with p=2. By the way the test is checking only one root but if we have AR(p) the auto-regressive polynomial has p complex roots. The test ADF is checking if one of the roots are outside unit circle. For p=0 (DF test) there is one root of the polynomial (stationary if and only if roots |z|>1 that is the coefficient before y_{t-1} between is -1 and 1). Then I catch the sense of DF test. For ADF test (p>1) is a bit strange.

        Reply
  1. Perhaps my older post was verbose(it’s really not for a page but for a section,u probably prefer to remove it) .In order to keep focus on ADF i rearranged it a bit:

    1)When peforming ADF to check for stationarity of residuals , how do we choose type?Would it be wise to start with type 2 (trend+constand) as the general case?If not, how to decide?
    2)I’ve read that if a test has unit roots it’s differenced data are stationary.From here i concluded that if DF says stationary, we are good to go!
    3)Next is differences ?Does ADF provide assistance to choose wether it is needed and how many of them are better
    4)In a regression (of two time-series) do we need DF or ADF

    Reply
    • Hello Savvas,
      1) I suggest that you create a graph of the data and decide based on the graph
      2) This is correct for a DF test. After an ADF test, you might need to perform differencing multiple times.
      3) Not sure what you are asking. Do you want to know how many times to perform differencing?
      4) I don’t understand what you mean by regression of two time series.
      Charles

      Reply
      • In a book I’ve been reading it was mentioned that in the case of two time-series the RSquare might be artificially high since they could just be trending with time. In it three tools were mentioned
        A)use a time-period column on the independants
        B)de-trend them (and do regression with the residuals)
        C)difference (and it mentions different types of difference :level,seasonal and the simplest from previous period)

        In what order and how many times should these be used?…is the question
        And in the other hand in two time series regression in chapter 12 it mentioned different perhaps more relaxed set of assumptions i am seeking to use.Like have an full-blown example with at least one(or as little as needed sometimes) test per assumption .

        And something new i have been trying to understand through your site is co-integration!!!!!!Is it more powerfull than correlation?Does it have assumptions?How do you report artefacts after anlaysis.

        Reply
  2. Hi, charles
    i always want to complement your site since ,at the minimum, i will get the leads i want to my searches.Now i am trying to report a trend coefficient for a single regression among two time series as a feature of my spreadsheets with activities that are extended to have kept variables\indicators.I only intend to hint them to further research!

    I am struggling to put an alogithm in line…i figured that i have to use stationarity and test for normality from the other assumptions.(the other are easier orrrrr…..not?)

    I also discovered that if the data are simultanously trending i need to use their differences as used in finance .If *they* are stationary which is described by an ADF i can move on but how many differences should that involve and should i use type 2 by default?,as the general case?.On the other hand, I found out that you can use the residuals from both variables and their trends in time(Wooldridge) if their co-trending produces artificially high R^2.I also used to loop throught transformations to get the best stats.Now i think i will just find the best box-cox lambda.

    1)But as i said i struggle to put these in order(or eliminate something from the procedure) and how should they are reverse-transformed to the units of the inputs to the model!

    2)I have sent you an e-mail where i extend my questions since they do not fit on one page but rather on a section . There is also an offer you can’t neglect

    Thnx in advance

    Reply
  3. Hi Charles

    Concerning your figure 2, how can I know which of the results (no constant no trend/ constant no trend/ with trend) I have to chose? For the trend I plot the data and look if there is a trend but what can I do to know if I have to chose with or without constant?

    Best regards
    Alexander

    Reply
  4. Hi Charles,
    I have a question concerning the output “lags” after using your your ADFTEST formula and entering “none” as a criteria. How does it calculate the optimal number of lags to use like for instance in your example here in Figure 2 column T the lags: 3.
    How does the model know this is the optimal number of lags?
    Best regards
    RJ

    Reply
  5. Hi Charles
    Thank you, I detected the error, I did the =adftest formula but I forgot to put -1 after the “True”.
    Now I get one time series with lags=7 and the other with lags = 0. When I do the granger test wanting to know if the time series (with lags = 0) predicts the other time series (with lags=7). Looking at the granger test result, will I have to look at the result with 7 lags (or in my case 8 as its differenced data) or 0 (meaning 1 as its differenced data too)?

    Greg

    Reply
  6. Hi Charles,

    At first my data wasnt stationary and I applied first differences. Now it is stationary but the ADF Test shows me lags: 0

    Does that mean that the optimal number of lags is 0 and therefore I cant perform the granger causality test? Or how exactly do I see the lags I can use?
    Thank you so much for your help and best regards
    Greg

    Reply
  7. Hi Charles,

    I did a ADFTest and got the result that it is stationary but lags=0.

    What does that mean for performing the granger causality test? That I cant use it as lags of 0 doesnt work?

    I have a dataset of 64 and when I just use the Round formula I get a max lag of 11 which is quite disturbing.
    Any other suggestions how I can get the max of lag to use?

    Thanks in advance for your help!
    Best regards
    Greg

    Reply
  8. hi research professor, I am a sierra leonean pursuing BSc economics at nNjala university Bo. I am currently writing my dissertation on the topic the impact of global petroleum price on key macroeconomics variables in sierra leone. but i have been constrained as to how to run my regression the variables i have selected, so please sir i really want you to help me out as the econometrics we did is traditional and not up to standard.

    Reply
  9. Hey I am trying to understand how the RegCoeff function works when doing the multiple linear regression. I know the values from this are used to determine the ADF crit value value but I am nor sure how RegCoeff is calculating the four value is produces. Can you please let me know the formula that you used for this function? Thanks in advance

    Reply
  10. Dear Charles,

    I used Engle-Granger Test in order to see how the gas prices in Germany are cointegrated with prices from other European countries (trading hubs). Indeed, they are, but my question is how can I see if German prices are “more cointegrated” with a specific country? Is it possible? I want to understand what country has the biggest influence.

    Thank you in advance,
    Artemis

    Reply
  11. Hi,
    Could you please explain a bit more the reason for using 7 lags instead of 8? Should I decrease the number of lags for each variation of the test (w/trend;w/constant,w/o trend and w/o constant or trend)?
    Thank you in advance.
    I am looking forward to your reply,
    Marina

    Reply
    • Hi Marina,
      The value 8 in cell K10 is calculated by the formula =ROUND(12*(K4/100)^0.25,0), which is the Schwert estimate of the maximum lag.
      As explained on the webpage, you can’t actually use 8 for this example since it would produce an error. See the following sentence towards the end of the ewebpage:
      “Note that we didn’t use 8 as the maximum number of lags since that would produce error values (based on insufficient degrees of freedom in the underlying regression analysis).”
      Charles

      Reply
  12. Hi

    My data is stationary after difference once, but the lags of the data are fifteen, what do high lags mean, and if the lags are high, can I do exponential smoothing?

    Reply
  13. Hi
    what is the implication of lag? In your chicken-egg example, egg Granger causes chicken at lag 1,2,3& 4. What do you interpret out of it in time series? Help me understand the interpretation please!

    Reply
  14. Hi,
    Why in the ARIMA model with one difference, you do not add the constant for calculation of residuals. For example in an AR(1) model the residuals are calculated as
    y_t – phi1*y_t-1 So not constant

    Reply
    • Fabricio,
      If you are referring to the AR(1) and other ARIMA models described on the website, I usually subtract the constant term from the data and so deal with a time series without a constant term.
      Charles

      Reply
  15. Charles,
    Based on the example in figure 2, I have a series where 3 scenarios have been evaluated. of these 3 scenarios, 2 of them are evaluated as non-stationary and 1 as stationary (random walk + drift + trend). Correct me if I am wrong: this scenario has a deterministic trend and is stationary in lag 3, while in the two scenarios that are not stationary they are in lag 1 and lag 0. At the end of this series first ask: Is it absolutely stationary or not ???, second question: the test also detects seasonality?

    Reply
  16. The ADF TEST using the Schwert, AIC and BIC or NONE criteria, how do I conclude if my time series is stationary or not? Or in the results when I get that it is stationary with lags = 0, what does it mean that it is stationary with that lag?

    Reply
  17. Hi Charles,

    The tool you have shared is great. I am using it to find the p-value of residuals obtained by regression of two series. But I am not getting an exact p-value. It gives p>0.1 as a result. Please help me get the exact value.

    Reply
    • Hello Anup,
      The table of critical values that I am using doesn’t provide values larger than .1 and so I am unable to give an exact value.
      Charles

      Reply
  18. For pair trading of two stocks, which variables of ADF test be chosen- w/o trend and constant or w/ constant and no trend or w/ constant and trend

    Reply
  19. Hi,

    How to calculate p_value using ADF test?. Please let me know the parameters to select in the plugin.

    Thanks,
    Nesamani

    Reply
    • Nesamani,
      The ADFTEST function calculates an estimate of the p-value for you. Regarding the parameter values to use, this depends on which version of the test you want to employ.
      Charles

      Reply
      • Thank you Charles.
        I am getting result of ADF test for time series residuals per below:

        criteria schwert
        drift no
        trend no
        lag 14
        alpha 0.05

        tau-stat -2.232199336
        tau-crit -1.94129
        stationary yes
        aic 7.802771324
        bic 7.819320594
        lags 0

        I cannot find P_Value in the result. Please help me.

        Reply
        • Nesamani,
          If you use the ADFTEST function, just make sure that you insert your ADFTEST formula in an 8 x 2 sized range.
          If instead you used the data analysis tool, the allocated range is incorrectly set to a 6 x 2 size, which is too small. This is easy to fix. Just highlight the 6 x 2 range containing the ADFTEST formula and expand this range to an 8 x 2 size (by highlighting another two rows). Now click on the ADFTEST formula in the formula bar and press Ctrl-Shft-Enter. This will add the missing two rows, the last of which contains the p-value.
          I will fix this error in the next release of the Real Statistics software (available soon).
          Thanks for finding this error. I appreciate your help in improving the software.
          Charles

          Reply

Leave a Comment