Hi all,
I am using esttab to generate a table of descriptive statistics in latex format in Stata 16:
code:
I would like to add the percentage symbol (%) in the pct descriptive statistic.
I have tried the following, but it does not work:
Code:
What is the correct way of doing it?
Thank you all in advance!
I am using esttab to generate a table of descriptive statistics in latex format in Stata 16:
code:
Code:
estpost tab recipient_grant D_batx eststo Table15 esttab Table15 using "$results/tables/descriptives/grant_recipient.tex", replace /// cells("b(fmt(%13.0f)) pct(fmt(%13.2f))") nonumber /// nomtitle noobs label /// collab("Freq." "Percent")
I have tried the following, but it does not work:
Code:
Code:
fmt(%9.2f\%%)
Thank you all in advance!
Comment