Hello dear forum members,
My goal is to store estimates after
To do so, I am using
However, when I call for estimates stored this way, they are presented in a single column, which is not convenient with 60 regressors and 9 quantiles. E.g.:
What is be the correct way to store each set of estimates corresponding a given quantile under a separate name?
Thankfully,
Anton
My goal is to store estimates after
Code:
sqreg y x1-x60, reps (1000) q(.01 .05 .10 .25 .50 .75 .90 .95 .99)
Code:
estimates store sqreg
Code:
---------------------------- (1) y ---------------------------- q01 x1 0.0000105 (0.49) x2 1.817*** (4.22) x3 0.0197 (0.11) ---------------------------- q05 x1 0.0000203 (1.40) x2 3.042*** (7.46) x3 -0.0231 (-0.23) etc.
Thankfully,
Anton
Comment