9 Stata Output as Tables
9.1 Overview
To include tables of Stata output in a document’s text (as opposed to including Stata output in a specially formatted output block), requires three steps
- save the Stata output in a form that can be used for a table
- read the output into R as a matrix or data frame
- display the output with
knitr::kable
9.2 Saving Stata output
Example data set:
(1978 automobile data)
Use Stata’s putexcel
command to save a table of results.
quietly regress mpg weight displacement
quietly putexcel set regress.xlsx, replace
matrix coef = r(table)'
putexcel A1 = matrix(coef), names
quietly putexcel save
file regress.xlsx saved
9.4 Display the Table
Then use knitr::kable
to print those results as document text.
variable | b | se | t | pvalue |
---|---|---|---|---|
weight | -0.0065671 | 0.0011662 | -5.6310042 | 0.0000003 |
displacement | 0.0052808 | 0.0098696 | 0.5350558 | 0.5942831 |
_cons | 40.0845223 | 2.0201103 | 19.8427396 | 0.0000000 |
This page was written using:
- Statamarkdown version 0.9.2
- knitr version 1.45