Ok so that is a good point
if you use predict you can get model predictions with mmqreg based on any equation you estimate:
However, if you use "abs" option, it will not consider that part of the estimation.
xtqreg (the original command) does allow you to estimate the quantile with fixed effects.
Check the latest update of that command, and the option "predict()"
if you use predict you can get model predictions with mmqreg based on any equation you estimate:
Code:
ssc install frause frause oaxaca, clear mmqreg lnwage educ , q(50) predict xb50, xb eq(#3) mmqreg lnwage educ , q(75) predict xb75, xb eq(#3)
xtqreg (the original command) does allow you to estimate the quantile with fixed effects.
Check the latest update of that command, and the option "predict()"
Comment