Hello All,
I am in the midst of running approximately 8 different regression specifications, to answer the same quesiton. As such, I would ideally like them all to be displayed in the same output table.
Basically, I run the following code:
This code just displays all the output in a very jumbled manner on the Stata screen. Are there any fixes to this using the esttab command (either directly to be displayed on stata or on latex?)
Thanks!
Chinmay
I am in the midst of running approximately 8 different regression specifications, to answer the same quesiton. As such, I would ideally like them all to be displayed in the same output table.
Basically, I run the following code:
Code:
eststo clear eststo: xi: quietly regress y x . . eststo: xi: quietly regress y x i.year i.country esttab, indicate("Country Effects=_Iisocode2*" "Year Effects=_Iyear*") compress abbrev
Thanks!
Chinmay
Comment