Hello,
I am analysing the gender wage gap in the UK using the Oaxaca-Blinder decomposition. I am including control variables for age, education, region etc. In a normal regression, I would add age squared as a control but I am not sure how to include this when using the -oaxaca- command. I will first perform a simple decomposition, only including age as a control in order to explain the intuition behind the method.
I have created a variable for age^2 = age2 and this is the code I am currently using.
Is this correct or is it better to drop the age^2?
I am analysing the gender wage gap in the UK using the Oaxaca-Blinder decomposition. I am including control variables for age, education, region etc. In a normal regression, I would add age squared as a control but I am not sure how to include this when using the -oaxaca- command. I will first perform a simple decomposition, only including age as a control in order to explain the intuition behind the method.
I have created a variable for age^2 = age2 and this is the code I am currently using.
Code:
oaxaca lnwage age age2, by(female) noisily
Comment