When we are creating tables in STATA using esttab,
1. According to this document http://repec.org/bocode/e/estout/hlp_estout.html, we can add different formats to different regressors in a model. So for example, b(fmt(2 3 3)) will output the first regressor's point estimate in 2 decimal format and the second and third regressor's point estimates in 3 decimal formats.
2. The document also mentions the using of "main(name) to display a different statistic than the default point estimates, and we can even add formatting to this user-chosen statistic. So for example main(mean 2) will put the mean of the regressor in a 2 decimal format.
My question is, therefore, how to combine the two techniques mentioned above and format a user-chosen static differently for different regressors? So ideally, I am thinking about something like
main(mean 2 3 3), which will out the mean for the first regressor in 2 decimal format, and mean for the second and third regressor in 3 decimal format. This apparently does not work, as the output is a span of multiple created tables that couldn't even fit in a single page.
1. According to this document http://repec.org/bocode/e/estout/hlp_estout.html, we can add different formats to different regressors in a model. So for example, b(fmt(2 3 3)) will output the first regressor's point estimate in 2 decimal format and the second and third regressor's point estimates in 3 decimal formats.
2. The document also mentions the using of "main(name) to display a different statistic than the default point estimates, and we can even add formatting to this user-chosen statistic. So for example main(mean 2) will put the mean of the regressor in a 2 decimal format.
My question is, therefore, how to combine the two techniques mentioned above and format a user-chosen static differently for different regressors? So ideally, I am thinking about something like
main(mean 2 3 3), which will out the mean for the first regressor in 2 decimal format, and mean for the second and third regressor in 3 decimal format. This apparently does not work, as the output is a span of multiple created tables that couldn't even fit in a single page.

Comment