Hi,
I would like to know if there is a way to append a new estimation table horizontally instead of vertically. For example, how can I append the table with the results from the "lifeexp" regressions next to the table with the results from the "auto" regressions and see both tables side by side in the same excel sheet.
I would like to know if there is a way to append a new estimation table horizontally instead of vertically. For example, how can I append the table with the results from the "lifeexp" regressions next to the table with the results from the "auto" regressions and see both tables side by side in the same excel sheet.
Code:
sysuse auto
regress price weight mpg
eststo
regress price weight mpg foreign
eststo
esttab using "...\Table1.csv", label
sysuse lifeexp, clear
eststo clear
reg lexp gnppc
eststo
reg lexp gnppc safewater
eststo
esttab using "...\Table1.csv", label append

Comment