In Stata 14 I can report odds ratios for OLS regression by adding
Code:
, eform(exp(Coef.))
But not seeing any such option for quantile regression. Is there any way or user written program that can do this?
I tried the following, but it shows- invalid eform
Code:
webuse auto
Code:
sqreg price weight length foreign, q(.25 .5 .75)
invalid eform