A-Panel-ARDL-Approach 1
We aim to examine the effects of CO2 emissions, agricultural advancements, and food availability on economic growth in West Africa from 1990 to 2020, using a panel ARDL approach with data from 14 countries. R Programming language was used to explore the data and Stata was used for the panel ARDL analysis. The analysis evaluates both long- and short-term effects. The data utilized for this study is secondary data for fourteen West African countries and was sourced from the World Bank’s Climate Change Knowledge Portal(CCKP) 2 and World Development Indicators (WDI) database 3. The dependent variable is the GDPC. The natural logarithm transformation was applied to the variables using the formula y = ln(x) , where x is the original variable value and y is the transformed value. This transformation controlled the influence of extreme values 4.
The model specification is:
where the variables:
The population growth rate was added as a control variable to account for the potential impact of population on the indicators over time.
Testing for stationarity in the time dimension in panel data analysis is crucial in determining whether the panel is dynamic or static. Unlike simple time series analysis, which employs standard unit root tests for stationarity, more advanced approaches have been developed to check for stationarity in panel data. This study employed the first-generation panel unit root tests, which assume cross-sectional independence and are generally derived from the augmented Dickey-Fuller (ADF) test proposed by 5 for a single cross-section series, modified for multiple cross-sectional units to obtain the panel unit root regression 6 given as:
where for
The general test hypotheses are series has a unit root or is non-stationary (null hypothesis) and series has a no unit root or is stationary (alternative hypothesis). The panel unit root tests employed in this study are Levin, Lin and Chu (LLC) test 7 and Im, Pesaran and Shin (IPS) test 8. Refer to 1 for detailed explanation of the types of panel unit root tests used. The following Stata Codes were used:
/* Panel Unit Root Test*/
/* xtunitroot llc variable (LLC) */
xtunitroot llc lGDPC
xtunitroot llc lCO2
xtunitroot llc lFP
xtunitroot llc lAVA
xtunitroot llc lPGR
/* xtunitroot llc variable, trend (LLC with trend)*/
xtunitroot llc lGDPC, trend
xtunitroot llc lCO2, trend
xtunitroot llc lFP, trend
xtunitroot llc lAVA, trend
xtunitroot llc lPGR, trend
/*xtunitroot ips variable (IPS) */
xtunitroot ips lGDPC
xtunitroot ips lCO2
xtunitroot ips lFP
xtunitroot ips lAVA
xtunitroot ips lPGR
/*xtunitroot ips variable, trend (IPS with trend) */
xtunitroot ips lGDPC, trend
xtunitroot ips lCO2, trend
xtunitroot ips lFP, trend
xtunitroot ips lAVA, trend
xtunitroot ips lPGR, trend
And the results is as shown in the table below which reveal a mix of stationary [I(0)] and non-stationary [I(1)] , with the dependent variable GDPC being integrated of order 1 [I(1)] . This indicates that the panel data is non-stationary, making the Panel ARDL method suitable for assessing both short-term and long-term effects.
The panel ARDL method is a co-integration procedure in panel data analysis 9. A a detailed explanation of the Pedroni cointegration test for panel data is provided in 10. This test checks for the presence of a long-term dynamics in the empirical model. Estimates of the long-run relationship are computed by the panel ARDL Error Correction Model (EMC). The panel ARDL ECM is given as
where for
In the presence of co-integration, we can obtain the long-term coefficients
and for short-run relationship coefficients, we have:
where
The following Stata Codes were used:
/* Co-integration Analysis */
xtcointtest pedroni lGDPC lCO2 lFP lAVA lPGR
Results of ARDL bounds test to check for co-integration is showed in table below. With p - value less than 0.05 for the tests, it is sufficient to reject the null hypothesis in Co-integration test and conclude that there exists co-integration. In the presence of co-integration, the model can examine both the long- and short-run dynamics, enabling the esti mation of long-term equilibrium relationships and short-term adjustments
The unrestricted VectorAuto-Regressive(VAR) model indicate the optimal lag length order of each variable. See 1 for detailed explanation.
/* ARDL Individual Lag Selection */
forval i = 1/14{
ardl lGDPC lCO2 lFP lAVA lPGR if (country==`i'), maxlag ( 2 2 2 2 2 )
matrix list e(lags)
di
}
This was chosen based on the most frequently occurring lag order across the countries. The optimal lag for the panel was (1,1,0,0,0).
The Hausman MG test, proposed by 11, is a statistical tool used to determine the appropriateness of using a Mean Group, Pooled Mean Group, or Dynamic Fixed Effects estimators in panel data analysis. The Hausman MG test is a comparison between a consistent estimator (MG) and an efficient estimator (PMG), with the null hypothesis that the efficient estimator (PMG) is appropriate. If the null hypothesis is rejected, another test is needed between MG (consistent) and DFE (efficient) with the new null hypothesis suggesting that the DFE model is more appropriate. The test works by comparing the variance of the panel ARDL models with a chi-square
where
The Hausman test results revealed the most robust estimator for the panel data analysis. The first test between MG and PMG revealed a significant p -value (0.0000)1 which lead to the rejection of homogeneity, making the PMG model unsuitable.
/* Hausman MG Test */
xtpmg d.lGDPC d.lCO2 d.lFP d.lAVA d.lPGR, lr(l.lGDPC lAVA lFP lCO2 lPGR)
ec(ECT) replace mg
xtpmg d.lGDPC d.lCO2 d.lFP d.lAVA d.lPGR, lr(l.lGDPC lAVA lFP lCO2 lPGR)
ec(ECT) replace pmg
hausman mg pmg, sigmamore
The second Hausman test between MG and DFE revealed a p-value(0.7105) more than 0.05 , hence we fail to reject the null hypothesis and conclude that the DFE estimator is the most appropriate choice.
/* Hausman MG Test */
xtpmg d.lGDPC d.lCO2 d.lFP d.lAVA d.lPGR, lr(l.lGDPC lAVA lFP lCO2 lPGR)
ec(ECT) replace mg
xtpmg d.lGDPC d.lCO2 d.lFP d.lAVA d.lPGR, lr(l.lGDPC lAVA lFP lCO2 lPGR)
ec(ECT) replace dfe
hausman mg DFE, sigmamore
Footnotes
-
Frimpong, T.D., Atchadé, M.N. & Tona Landu, T. Assessing the impact of CO2 emissions, food security and agriculture expansion on economic growth: a panel ARDL analysis. Discov Sustain 5, 424 (2024). https://doi.org/10.1007/s43621-024-00630-7 ↩ ↩2 ↩3 ↩4
-
World Bank, Climate Change Knowledge Portal(2024), 2024. https://climateknowledgeportal.worldbank.org/, Accessed 10 May 2024. ↩
-
World Bank, World Development Indicators (2024), World Bank, 2024. https:// datab ank. world bank. org/ source/ world- devel opment- indic ators. Accessed 11 May 2024. ↩
-
Feng C, Hongyue W, Lu N, Chen T, He H, Lu Y, Tu X. Log-transformation and its implications for data analysis. Shanghai Arch Psychiatr. 2014;26:105–9. https://doi.org/10.3969/j.issn.1002-0829.2014.02.009. ↩
-
Dickey D, Fuller W. Distribution of the estimators for autoregressive time series with a unit root, JASA. J Am Stat Assoc. 1979. https://doi. org/10.2307/2286348. ↩
-
Barbieri L. Panel unit root tests: a review, Serie Rossa: Economia - Quaderno N. 2005;43. ↩
-
Levin A, Lin C-F, Chu C-SJ. Unit root tests in panel data: asymptotic and finite-sample properties. J Econom. 2002;108(1):1–24. ↩
-
Im KS, Pesaran MH, Shin Y. Testing for unit roots in heterogeneous panels. J Econom. 2003;115(1):53–74. ↩
-
Muchapondwa E, Pimhidzai O. Modelling international tourism demand for zimbabwe. Int J Busand soc Sci. 2011;2(2):71. ↩
-
Pedroni P. Panel cointegration; asymptotic and finite sample properties of pooled time series tests, with an application to the ppp hypothesis. Econom Theory. 2004;20:597–625. https://doi.org/10.1017/S0266466604203073 ↩
-
J. A. Hausman, Specification tests in econometrics, Econometrica: Journal of the econo metric society (1978) 1251–1271 ↩