Hi Statalist
I am trying to make a classic table 1. When I run the code in functions very well but I would like that the percentage of the total amount of the study population to be in a parenthesis after the number - i.e number living in LA: 1500 (15%).
Is this do-able in stata?
I am trying to make a classic table 1. When I run the code in functions very well but I would like that the percentage of the total amount of the study population to be in a parenthesis after the number - i.e number living in LA: 1500 (15%).
Is this do-able in stata?
Code:
table () (exposure sex), /// statistic(mean age) /// statistic(sd age) /// statistic(fvfrequency reg ) /// statistic(fvpercent reg) /// nformat(%9.0fc frequency) /// nformat(%6.2f mean sd) /// style(table-reg1-fv1) /// nototal
Comment