| NARDL | R Documentation |
This function implements the Dual Wavelet-based Nonlinear Autoregressive Distributed Lag (NARDL) model.
NARDL(Data, Exo, MaxLag, Trend = TRUE)
Data |
A time series object (numeric vector) representing the dependent variable. |
Exo |
A time series object (numeric vector) representing the exogenous variable. |
MaxLag |
Maximum number of lags to consider. |
Trend |
Boolean to include trend in the model. Default is TRUE. |
A list containing:
Coefficients |
Model coefficients (short and long run). |
AsymTest |
Wald test statistics and p-values. |
IC |
Information criteria (AIC, BIC, Log-likelihood). |
Jammazi, R., Lahiani, A., & Nguyen, D. K. (2015). A wavelet-based nonlinear ARDL model for assessing the exchange rate pass-through to crude oil prices. *Journal of International Financial Markets, Institutions and Money, 34*, 173-187. https://doi.org/10.1016/j.intfin.2014.11.011
Data <- rnorm(100)
Exo <- rnorm(100)
Results <- NARDL(Data, Exo, MaxLag = 3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.