Dear all,
I was wondering how someone can tabulate results from a quantile regression. Below is a sample of what I am doing. Variables Rown, Dlab1 Dlab2 Deduc1 are dummy vars, nwealth, emo inher are in thousands and size/ra0300 are integers. I would like to make a quantile regression table showing coefficients, std.errors and significance levels (1%, 5%, 10%) for quantiles .1 .25 .5 .75 and 0.9
I used eststo: mi estimate:.. but it returns no results when tried to display them.
Any help would be much appreciated.
Ilias
. mi estimate: sqreg nwealth emo inher size ra0300 Rown Dlab1 Dlab2 Deduc1, quantile(.1 .25 .5 .75 .9) reps(500)
xxxxxxxxx
Multiple-imputation estimates Imputations = 5
Simultaneous quantile regression Number of obs = 204
Average RVI = 0.1528
Largest FMI = 0.2762
Complete DF = 195
DF adjustment: Small sample DF: min = 43.96
avg = 136.69
max = 192.98
------------------------------------------------------------------------------
nwealth | Coef. Std. Err. t P>|t| [95% Conf. Interval]
-------------+----------------------------------------------------------------
q10 |
emo | 6.514076 1.452832 4.48 0.000 3.64837 9.379782
inher | .7629998 .2970967 2.57 0.011 .1770264 1.348973
size | 21523.16 11910.8 1.81 0.073 -2027.945 45074.27
ra0300 | 3080.98 1513.365 2.04 0.044 85.20319 6076.757
Rown | 176529.4 34403.11 5.13 0.000 108630.2 244428.6
Dlab1 | 79280.07 77806.56 1.02 0.310 -74194.63 232754.8
Dlab2 | 7229.486 27602.12 0.26 0.794 -48054.87 62513.84
Deduc1 | 62947.28 53146.36 1.18 0.238 -41892.48 167787
_cons | -387149.1 137062.8 -2.82 0.005 -658165.9 -116132.3
-------------+----------------------------------------------------------------
I was wondering how someone can tabulate results from a quantile regression. Below is a sample of what I am doing. Variables Rown, Dlab1 Dlab2 Deduc1 are dummy vars, nwealth, emo inher are in thousands and size/ra0300 are integers. I would like to make a quantile regression table showing coefficients, std.errors and significance levels (1%, 5%, 10%) for quantiles .1 .25 .5 .75 and 0.9
I used eststo: mi estimate:.. but it returns no results when tried to display them.
Any help would be much appreciated.
Ilias
. mi estimate: sqreg nwealth emo inher size ra0300 Rown Dlab1 Dlab2 Deduc1, quantile(.1 .25 .5 .75 .9) reps(500)
xxxxxxxxx
Multiple-imputation estimates Imputations = 5
Simultaneous quantile regression Number of obs = 204
Average RVI = 0.1528
Largest FMI = 0.2762
Complete DF = 195
DF adjustment: Small sample DF: min = 43.96
avg = 136.69
max = 192.98
------------------------------------------------------------------------------
nwealth | Coef. Std. Err. t P>|t| [95% Conf. Interval]
-------------+----------------------------------------------------------------
q10 |
emo | 6.514076 1.452832 4.48 0.000 3.64837 9.379782
inher | .7629998 .2970967 2.57 0.011 .1770264 1.348973
size | 21523.16 11910.8 1.81 0.073 -2027.945 45074.27
ra0300 | 3080.98 1513.365 2.04 0.044 85.20319 6076.757
Rown | 176529.4 34403.11 5.13 0.000 108630.2 244428.6
Dlab1 | 79280.07 77806.56 1.02 0.310 -74194.63 232754.8
Dlab2 | 7229.486 27602.12 0.26 0.794 -48054.87 62513.84
Deduc1 | 62947.28 53146.36 1.18 0.238 -41892.48 167787
_cons | -387149.1 137062.8 -2.82 0.005 -658165.9 -116132.3
-------------+----------------------------------------------------------------
Comment