I would like to estimate an ARDL model with R according to the following procedure: Econometrics Beat: Dave Giles' Blog: ARDL Models - Part II - Bounds Tests (this blog's author uses EViews)
Here is my ARDL model in R:
Step1 <- lm(dlX ~ dlX_1+dlY+dlY_1+lX_1+lY_1, data=DB, na.action = na.exclude)
where _1
means that I took one lag of the variable, l
the natural log of the variable and d
the first difference.
I unfortunately can not find how to perform the stability test of an ARDL model in R (I would like to test whether the inverse roots of the corresponding characteristic equation are lower than 1), which is an important step of the procedure described on Dave Giles’s Blog. He explains that an ARDL model must have "covariance stationarity".
Does a command exist in R to perform this test?
I would suggest use this link for good explanation of the ARDL model in R:https://rpubs.com/cyobero/ardl. It says to use the
libary(dynlm)
anddynlm()
function.I will give a small example to give you an idea how this works:
Data looks like this:
Next convert your data to time series object and fit your model:
Finally check your results:
Output: