Hi, I have a multi-equation model that I would like to get into an -esttab- table. That's easy.

The hard part is, I would like to exponentiate the coefficients of some model equations, but not all. Here's an example:

Code:
// Open data set
webuse womenwk, clear

// Estimate some multi-equation model
heckman wage educ age, select(married children educ age)

// Store estimates from this model
estimates store m1

// Create table
esttab m1, eform
This is the table:

Code:
----------------------------
                      (1)   
                     wage   
----------------------------
wage                        
education           2.691***
                  (18.59)   

age                 1.238***
                  (10.34)   
----------------------------
select                      
married             1.561***
                   (6.61)   

children            1.551***
                  (15.79)   

education           1.057***
                   (5.19)   

age                 1.037***
                   (8.79)   
----------------------------
/                           
athrho              2.397***
                   (8.62)   

lnsigma             6.005***
                  (64.95)   
----------------------------
N                    2000   
----------------------------
Exponentiated coefficients; t statistics in parentheses
* p<0.05, ** p<0.01, *** p<0.001
My problem is that the eform option now exponentiated everything in the table -- is there a way to not exponentiate coefficients in e.g. the "select" equation?

(I know that the example chosen doesn't make sense in substantive terms, I couldn't think of a better one.)

Thanks
Klaus