Dear all,
I am doing a banking competition analysis of EU28 countries with the data for the year 2011-2016. The dataset is unbalanced. I have to calculate a few competition measures by running a Stochastic Frontier Analysis and few fixed effect regression for each country and year.
Then I would like to save the results of coefficients for each country and year. I have tried the following command but what I get is just a dataset with all missing data. Can anyone suggest how can I do it properly? I have run the following command for two of the measures:
1. Boone indicator
2. H-statistic
Also, how can I save down vit of the error term from Stochastic Frontiere Analysis?
Many thanks,
Cedric
I am doing a banking competition analysis of EU28 countries with the data for the year 2011-2016. The dataset is unbalanced. I have to calculate a few competition measures by running a Stochastic Frontier Analysis and few fixed effect regression for each country and year.
Then I would like to save the results of coefficients for each country and year. I have tried the following command but what I get is just a dataset with all missing data. Can anyone suggest how can I do it properly? I have run the following command for two of the measures:
1. Boone indicator
Code:
statsby bi=_b[lac], by(year country) clear nodots: xtreg roa lac leqast lta lloanast ldeptf, fe
Code:
statsby _b[lp1] _b[lp2] _b[lp3], by(year country) clear nodots : xtreg ltrta lp1 lp2 lp3 leqast lta lloanast ldeptf, fe
Many thanks,
Cedric
Comment