Hello, still very new to Stata and I'm trying to create a clean table output.
This is the code I've used so far:
estpost varlist
eststo descriptive
esttab descriptive ///
using "/FileLocation.rtf", ///
cells("N mean sd") label ti("Variable Definitions and Descriptive Statistics") ///
varwidth(10) replace
This gives me a column for N, mean, and sd.
How do I get the mean and sd to abbreviate to two decimal points instead of 6? And if I wanted the sd under the mean instead of its own column, how could I change that?
Thank you.
This is the code I've used so far:
estpost varlist
eststo descriptive
esttab descriptive ///
using "/FileLocation.rtf", ///
cells("N mean sd") label ti("Variable Definitions and Descriptive Statistics") ///
varwidth(10) replace
This gives me a column for N, mean, and sd.
How do I get the mean and sd to abbreviate to two decimal points instead of 6? And if I wanted the sd under the mean instead of its own column, how could I change that?
Thank you.
Comment