Hello all, I was wondering if it is possible with Stata to generate a Table 1 of a manuscript with a single command.
I have multiple variables ( continuous and categorical).
I want to compare all these variables according to a 2 category variable.
If possible would like to have only one table and to have all the row percentage for categorical variables and mean or median for continous ones.
Is it possible?
I tried the tabmult command but gave me a .xls file that wasn't readable
Thank you for your help
I have multiple variables ( continuous and categorical).
I want to compare all these variables according to a 2 category variable.
If possible would like to have only one table and to have all the row percentage for categorical variables and mean or median for continous ones.
Is it possible?
I tried the tabmult command but gave me a .xls file that wasn't readable
Code:
tabmult, cat(sex CDCC_TOTAL) cont(age) by (CNT4) row m save(table1.xls)
Comment