I have reaction times (as a dependent variable), which I log-translate using the natural logarithm, to get it normally distributed. Then I run a regression on the log-translated data. I translated the values back using an exponential transformation.
My question - how do I account for the standard errors? Should I state their values after the transformation or not?
Your suggestions and help are much appreciated. Thank you!
Thanks @whuber.
At any rate, this post may be helpful to the OP: https://stats.stackexchange.com/questions/123514/calculating-standard-error-after-a-log-transform
– StatsStudent Aug 30 '20 at 14:10exp(mean(log(x))) * (sd(log(x))/sqrt(n-1)) in order to transform the standard error into the original (i.e., unlogged) scale? – Sharon Aug 30 '20 at 17:16