I'm generating an output summary table from one probit and one ivprobit estimation, including the first-stage results from the ivprobit estimation.
By default, esttab outputs the first-stage column to the right of the second-stage, and I would like this to be reversed, with the first-stage results in the middle column. If possible, I would also like to report the estimated sigma and rho parameters in the third column (with the second-stage estimates) as well.
Here is a reproducible example:
By default, esttab outputs the first-stage column to the right of the second-stage, and I would like this to be reversed, with the first-stage results in the middle column. If possible, I would also like to report the estimated sigma and rho parameters in the third column (with the second-stage estimates) as well.
Here is a reproducible example:
Code:
sysuse auto, clear eststo r1: probit foreign price mpg eststo r2: ivprobit foreign mpg (price = weight), mle first esttab r1 r2, label cell(b(star fmt(a3)) se(par)) nomtitle collabels(none) eqlabel(none) unstack