Thanks for all this! And thanks for asking my goals. Although there might be other use cases, what I want are publishable tables that put the coefficients on a different and more interpretable scale. So this works:
But the transform(@*.425 .425) option is not transparent and not documented in help esttab. It is documented in help estout, but even there it would take some study to figure out that you need to say transform(@*.425 .425) and not something simpler.
I just noticed that there is an equivalent example in help outreg2, whose syntax is simpler in this case:
Code:
sysuse auto, clear regress mpg gear_ratio esttab , se transform(@*.425 .425)
I just noticed that there is an equivalent example in help outreg2, whose syntax is simpler in this case:
Code:
sysuse auto, clear reg mpg gear_ratio outreg2 using myfile, replace outreg2 using myfile, stats(coef se) stnum(replace coef=coef*.425, replace se=se*.425)
Comment