I have perhaps a simple question regarding eststo/esttab/estout, but I'm struggling to find a solution online. Thoughts appreciated!
I would like to add a column to my regression table that shows the mean of each independent variable. For factor variables, I'd like to show the proportion of the same that falls within each category.
A simple example:
I'd like a new column with cells displaying 0.30, 0.15, and 777
Thank you!
I would like to add a column to my regression table that shows the mean of each independent variable. For factor variables, I'd like to show the proportion of the same that falls within each category.
A simple example:
Code:
sysuse auto, clear lab def origin 2 "Lunar", add replace foreign = 2 in 10/20 eststo clear eststo: reg mpg i.foreign weight esttab, label nobase
Thank you!
Comment