Hello, everyone. Could you help me with interpreting the results of oaxaca blinder twofold decomposition?
I have been reading several threads here and related literature but am still not so sure about if my interpretation is correct or not (especially when I use the option weight(0)).
My result:
Group 1: migrant = 0
Group 2: migrant = 1
ln_ahw | exp(b) Std. err. z P>|z| [95% conf. interval]
-------------+----------------------------------------------------------------
overall |
group_1 | 15.97559 .0975334 453.89 0.000 15.78556 16.1679
group_2 | 12.50604 .1236698 255.46 0.000 12.26599 12.75079
difference | 1.27743 .0148458 21.07 0.000 1.248661 1.306861
explained | 1.159331 .0166044 10.32 0.000 1.127239 1.192336
unexplained | 1.101868 .01621 6.59 0.000 1.070551 1.134102
-------------+----------------------------------------------------------------
I would like to interpret it as:
The endowment effect here quantifies the scenario where migrants, if they possessed the same characteristics as natives, would expect to earn about 15.93% (calculated as (1.1593-1)*100%) higher wages on average.
Applying the wage coefficients of migrants to the characteristics of natives suggests an expected average wage decrease of 10.19% for natives.
Could you pls tell me if I have understand it correctly or not?
Thanks a lot in advance!
I have been reading several threads here and related literature but am still not so sure about if my interpretation is correct or not (especially when I use the option weight(0)).
Code:
oaxaca ln_ahw male age_in_syear age_in_syear_square education_dummy exp occupation_coded2-occupation_coded3 region1, by(migrant) weight(0) categorical(occupation_coded?, region?) oaxaca, eform
Group 1: migrant = 0
Group 2: migrant = 1
ln_ahw | exp(b) Std. err. z P>|z| [95% conf. interval]
-------------+----------------------------------------------------------------
overall |
group_1 | 15.97559 .0975334 453.89 0.000 15.78556 16.1679
group_2 | 12.50604 .1236698 255.46 0.000 12.26599 12.75079
difference | 1.27743 .0148458 21.07 0.000 1.248661 1.306861
explained | 1.159331 .0166044 10.32 0.000 1.127239 1.192336
unexplained | 1.101868 .01621 6.59 0.000 1.070551 1.134102
-------------+----------------------------------------------------------------
I would like to interpret it as:
The endowment effect here quantifies the scenario where migrants, if they possessed the same characteristics as natives, would expect to earn about 15.93% (calculated as (1.1593-1)*100%) higher wages on average.
Applying the wage coefficients of migrants to the characteristics of natives suggests an expected average wage decrease of 10.19% for natives.
Could you pls tell me if I have understand it correctly or not?
Thanks a lot in advance!
Comment