People often estimate models with logarithmized dependent variables to interpret coefficients as approximations for semi-elasticites. All issues one might have with that aside, why is it not common to report transformed coefficients which correct for the imprecise elasticity approximation? The same applies (I think) to Poisson models?
With estout/esttab, applying the transformation should be straightforward:
The sole paper paper that I found which does that seems to be: https://www.pnas.org/doi/10.1073/pnas.2024399118
My question in short: Why is this not common, since it's so easy? Is there something wrong with this?
With estout/esttab, applying the transformation should be straightforward:
Code:
reg lny x esttab ., transform(exp(@)-1)
My question in short: Why is this not common, since it's so easy? Is there something wrong with this?
Comment