I'm running a regression on a large dataset (60m observations) with around 130 independent variables (included several factor variables). I would like to get a single table of the means, sd, min, max, 10th and 90th percentiles) of all the independent variables used in the regression, including the factor variable levels.
Example regression command:
I can get part of what I need with
But this doesn't output the percentiles or the statistics for the base factor variable category.
Can anyone help please?
Example regression command:
Code:
reg mydep i.Gender#ib5.agegrp ib5.agegrp#c.IMDScore ib5.agegrp_wide#ib5.hholdtype ib1.propertytype noise airpollution , base
Code:
summ i.Gender#ib5.agegrp ib5.agegrp#c.IMDScore ib5.agegrp_wide#ib5.hholdtype ib1.propertytype noise airpollution if e(sample) , base sep(0)
Can anyone help please?
Comment