Dear all,
I have a panel data of 608 observations.
Whenever I am using i.year for both fixed effects(year) and ols model, the last year in my model is dropping due to collinearity .suppose if i remove year 2021 and consider year 2020, then also last year in my model is showing dropped due to collinearity.this only happening when lag_mappl variable is present in the model
Is there any issue in my over all result if it drops like that or anyway can i resolve this.
any help is highly appreciated
I have a panel data of 608 observations.
Whenever I am using i.year for both fixed effects(year) and ols model, the last year in my model is dropping due to collinearity .suppose if i remove year 2021 and consider year 2020, then also last year in my model is showing dropped due to collinearity.this only happening when lag_mappl variable is present in the model
Is there any issue in my over all result if it drops like that or anyway can i resolve this.
Code:
. reg lzscore loangrowth loangrowth_sq lasset lag_mappl efficiency ratioofnoninterestincome liquid
> ityratio capitalisation i.year ,robust
note: 2021.year omitted because of collinearity.
Linear regression Number of obs = 608
F(22, 585) = 5.65
Prob > F = 0.0000
R-squared = 0.1329
Root MSE = 1.1766
------------------------------------------------------------------------------------------
| Robust
lzscore | Coefficient std. err. t P>|t| [95% conf. interval]
-------------------------+----------------------------------------------------------------
loangrowth | .0185964 .0054286 3.43 0.001 .0079344 .0292584
loangrowth_sq | -.0002277 .0000714 -3.19 0.002 -.0003679 -.0000874
lasset | .1780924 .0491891 3.62 0.000 .0814836 .2747012
lag_mappl | -.1806264 .0537025 -3.36 0.001 -.2860996 -.0751532
efficiency | 14.37221 12.52465 1.15 0.252 -10.22655 38.97097
ratioofnoninterestincome | -.0320329 .0476933 -0.67 0.502 -.1257039 .061638
liquidityratio | -.0415131 .0234823 -1.77 0.078 -.087633 .0046067
capitalisation | 2.977093 2.560367 1.16 0.245 -2.051538 8.005725
|
year |
2007 | -.1345336 .2472446 -0.54 0.587 -.6201287 .3510615
2008 | .2548396 .2646225 0.96 0.336 -.2648863 .7745656
2009 | 1.09878 .32077 3.43 0.001 .4687787 1.728781
2010 | .2002277 .2773853 0.72 0.471 -.3445646 .7450201
2011 | .1422808 .2768381 0.51 0.607 -.4014367 .6859983
2012 | -.0837224 .2690855 -0.31 0.756 -.6122136 .4447688
2013 | .5894946 .2808937 2.10 0.036 .0378117 1.141178
2014 | -.0282862 .2478318 -0.11 0.909 -.5150347 .4584623
2015 | -.0462421 .229075 -0.20 0.840 -.4961516 .4036675
2016 | .6115729 .357973 1.71 0.088 -.0914959 1.314642
2017 | -.0299619 .2846377 -0.11 0.916 -.5889982 .5290743
2018 | -.6353101 .2703274 -2.35 0.019 -1.16624 -.1043797
2019 | -.8127658 .2956974 -2.75 0.006 -1.393524 -.2320079
2020 | -.2859594 .2657807 -1.08 0.282 -.8079601 .2360412
2021 | 0 (omitted)
|
_cons | -.5370587 .7202829 -0.75 0.456 -1.951714 .8775966
------------------------------------------------------------------------------------------

Comment