I hope everyone is doing well. I wish to stack two regression tables in a single regression table. I'm making an example using auto data. Can someone please comment if this is possible in stata?
Example:
sysuse auto, clear
eststo reg1: regress price mpg rep78
esttab reg1 using "Table-1.rtf"
eststo reg2: regress weight length
esttab reg2 using "Table-2.rtf"
Now this will make two different tables for the regressions. What I want is to make a table where the estimates of these two are stacked vertically.
Example:
sysuse auto, clear
eststo reg1: regress price mpg rep78
esttab reg1 using "Table-1.rtf"
eststo reg2: regress weight length
esttab reg2 using "Table-2.rtf"
Now this will make two different tables for the regressions. What I want is to make a table where the estimates of these two are stacked vertically.
Comment