Dear all,
I am creating a table for latex in Stata using esttab. I would like to maintain the table's order of columns from left to right in ascending order of the model numbers (e.g. m1 first on the left and m2 on the right). However, I end up with a table where m1 ends up being the second column, but mislabelled as m2 (see the output below).
Is there a way to specify the order of columns that you would like in esttab?
Thanks!
I am creating a table for latex in Stata using esttab. I would like to maintain the table's order of columns from left to right in ascending order of the model numbers (e.g. m1 first on the left and m2 on the right). However, I end up with a table where m1 ends up being the second column, but mislabelled as m2 (see the output below).
Is there a way to specify the order of columns that you would like in esttab?
Thanks!
Code:
eststo clear eststo m1: quietly qui: reg chrel mktchL eststo m2: quietly qui: reg chsale mktchL chL lnas estout m1 m2, replace -------------------------------------- m1 m2 b b -------------------------------------- mktchL -.8120835 -.3627377 chL .1676934 lnas -1.232935 _cons -18.3429 -39.28699 --------------------------------------
Comment