Covariate N Mean Estimates SE
In the first two columns I display the frequency and the mean of the covariates:
Code:
outreg2 using table, tex replace sum(log) eqkeep(N mean) keep(`covariatesl')
For column 3, I get the estimates and SE by:
Code:
for each covariate in `covariate'{ reg covariate treatmentA outreg2 using table, append stats(coef se) }
1) Do you use outreg2 in that case or is it better to use another command? If outreg2, what did I do wrong/forget?
2) Does the command need to be inside the loop?
3) What command to use to remove the displayed column numbers (1), (2), (3), (4) that are automatically displayed when using outreg2.
4) How can I add an additional shared title over columns 3 and 4 ("Panel: Treatment A")?
0 Response to Display point estimates for multiple regressions of covariates in one column with outreg2.
Post a Comment