A comprehensive Python library implementing NARDL, Fourier-NARDL, and Bootstrap Fourier-NARDL models for robust cointegration analysis and asymmetric effects estimation.
Choose the right model for your research needs, from standard NARDL to advanced bootstrap methods
The foundational Nonlinear ARDL model based on Shin, Yu & Greenwood-Nimmo (2014). Decompose variables into positive and negative changes to capture asymmetric effects.
Learn moreExtends NARDL with Fourier approximation for smooth structural breaks (Zaghdoudi et al., 2023). Capture gradual regime changes without specifying break dates.
Learn moreCombines Fourier-NARDL with bootstrap cointegration tests (Bertelli et al., 2022). Eliminates the inconclusive zone problem of PSS bounds tests.
Learn moreGet up and running in minutes with our intuitive API
Pythonfrom nardl_fourier import NARDL, FourierNARDL, BootstrapNARDL # Standard NARDL Model model = NARDL( data=df, depvar='coal_consumption', exog_vars=['gdp', 'population'], decomp_vars=['oil_price'], maxlag=4, ic='AIC' ) # View results print(model.summary()) # Long-run multipliers print(f"Lโบ: {model.long_run['oil_price']['positive']['coefficient']:.4f}") print(f"Lโป: {model.long_run['oil_price']['negative']['coefficient']:.4f}") # Cointegration test print(f"Bounds Test: {model.bounds_test['decision']['F_5%']}")
Everything you need for professional econometric analysis
Compute and test asymmetric long-run effects with standard errors and confidence intervals using the delta method.
Visualize the dynamic adjustment paths for positive and negative shocks with cumulative multiplier plots.
Test for cointegration with critical values for all cases and significance levels following Pesaran et al. (2001).
Formally test for short-run and long-run asymmetry with F-statistics and p-values.
Export results to LaTeX, HTML, or markdown formats ready for academic papers.
Jarque-Bera, Breusch-Godfrey, Breusch-Pagan, CUSUM, and CUSUMSQ tests included.
Built on rigorous econometric foundations
"Modelling Asymmetric Cointegration and Dynamic Multipliers in a Nonlinear ARDL Framework"
"Fourier Nonlinear ARDL Model for Smooth Structural Breaks"
"Bootstrap cointegration tests in ARDL models" - Economic Modelling, 116, 105987