What do you think is the more efficient way of doing so?
-
Login or Register
- Log in with
clear
sysuse auto *Run a Regression on the variables you want summary statistics for *The regression results don't actually matter, just run it so that you can use outreg2 to pull summary stats reg price mpg rep78 headroom trunk weight length turn displacement gear_ratio foreign *Run outreg2 *Specify "sum" to get summary statistics. outreg2 sum using myfile.xlsx
Comment