estout
is a powerful tool for summarizing and exporting regression results in Stata. It’s highly customizable, allowing you to adjust the format, include various statistics (e.g., coefficients, standard errors, p-values), and export to different file types for reporting purposes.
Installing estout
:
ssc install estout
Running a Regression:
regress y x1 x2 x3
Storing Results:
eststo model1
Creating a Table:
estout model1
Exporting Results:
To a Text File:
estout model1 using results.txt, replace
To LaTeX:
estout model1 using results.tex, replace
To Excel:
estout model1 using results.csv, replace
Common Options:
se
: Display standard errors.label
: Display variable labels.star(*, **, ***)
: Show significance stars.title()
: Add a title to the table.mtitle()
: Add model titles.coeflabels()
: Rename coefficients.
Example of Full Code:
* Run regressions
regress y x1 x2 x3
eststo model1
regress y x1 x2
eststo model2
* Create a LaTeX table with coefficients and standard errors
estout model1 model2 using results.tex, cells(b se) replace star(* 0.10 ** 0.05 *** 0.01)