Dear Stata Users,
I am trying to obtain a table for summary statistics where the standard errors are in parenthesis just under the mean. I am using this code:
I tried to add: sformat("(%s)" sd) but also it did not work
Could you please help?
Thank you
JL
I am trying to obtain a table for summary statistics where the standard errors are in parenthesis just under the mean. I am using this code:
Code:
by market: asdoc sum exdumm exit_dum lnexp_tot lnimp_tot entrance_2 regional_exp real_output wages_by_inds empl_avr , replace
Code:
by market: asdoc sum exdumm exit_dum lnexp_tot lnimp_tot entrance_2 regional_exp real_output wages_by_inds empl_avr, sformat("(%s)" sd) replace
Thank you
JL
Comment