Here's the result of my regression together with the code used.
My dependent variable is lnGDP which is generated by - gen lnGDP = ln(GDP) -
What I believe to be true right now is that an increase in 1 unit of variable increase lnGDP by (Coef.)%
so the Dummy variable has a -5.10804% effect on lnGDP
However, searching online indicates that this is wrong.
If so, I'm wondering how do I correctly interpret the coefficients in the results especially with the Dummy variable.
Also, is it possible to interpret the Coefficients in terms of percentage?
For example, I would like to know how much % change in lnGDP would an increase by 1 unit of the CronyNW variable cause.
Code:
. xtreg lnGDP Dummy CronyNW Crony RuleofLaw GovFreedom TradeOpen Democracy WI lnPop UnemploymentILO Random-effects GLS regression Number of obs = 506 Group variable: A Number of groups = 68 R-sq: within = 0.7761 Obs per group: min = 1 between = 0.7621 avg = 7.4 overall = 0.8242 max = 9 Wald chi2(10) = 1671.44 corr(u_i, X) = 0 (assumed) Prob > chi2 = 0.0000 --------------------------------------------------------------------------------- lnGDP | Coef. Std. Err. z P>|z| [95% Conf. Interval] ----------------+---------------------------------------------------------------- Dummy | -.0510804 .0128683 -3.97 0.000 -.0763018 -.025859 CronyNW | -.0005677 .000128 -4.43 0.000 -.0008186 -.0003167 Crony | .0051423 .0005505 9.34 0.000 .0040633 .0062213 RuleofLaw | .0029894 .0002964 10.08 0.000 .0024084 .0035704 GovFreedom | -.001993 .001483 -1.34 0.179 -.0048997 .0009137 TradeOpen | .0106172 .0010782 9.85 0.000 .008504 .0127305 Democracy | -.0020406 .0013353 -1.53 0.126 -.0046578 .0005766 WI | .0015382 .0007525 2.04 0.041 .0000634 .003013 lnPop | .8786396 .0401595 21.88 0.000 .7999285 .9573506 UnemploymentILO | -.016465 .0019734 -8.34 0.000 -.0203328 -.0125973 _cons | 11.52465 .6950353 16.58 0.000 10.1624 12.88689 ----------------+---------------------------------------------------------------- sigma_u | .55074607 sigma_e | .06532987 rho | .98612438 (fraction of variance due to u_i) ---------------------------------------------------------------------------------
What I believe to be true right now is that an increase in 1 unit of variable increase lnGDP by (Coef.)%
so the Dummy variable has a -5.10804% effect on lnGDP
However, searching online indicates that this is wrong.
If so, I'm wondering how do I correctly interpret the coefficients in the results especially with the Dummy variable.
Also, is it possible to interpret the Coefficients in terms of percentage?
For example, I would like to know how much % change in lnGDP would an increase by 1 unit of the CronyNW variable cause.
Comment