I want to determine the 95% confidence interval of a mean.
I logged-transformed my data in order to achieve a normal distribution.
Several observations contained 0, so I changed these to 1 so that they would be represented as 0 after the transformation.
I then found the standard deviation of the log-transformed data.
I computed the SE of the transformed data by the equation
(SD/sqrt(n)*1.96)
,I back-transformed the SE with
exp(SE)
in order to get the SE on the scale of the original data.I then added and subtracted the back-transformed SE from the untransformed mean (calculated with the
0
s) in order to find the lower and upper confidence limits of the mean.
I have a bad feeling my back-transformation (step 5) is either not done correctly, or in the wrong place. Could someone validate my method? Refute it maybe as well, with an explanation of any statistical rules I have violated with this method, and possible suggestions to solve the problem