Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

As title, is there anything like this? I know how to calculate CI for arithmetic mean, but how about geometric mean? Thanks.

share|improve this question

1 Answer

up vote 11 down vote accepted

The geometric mean $(\prod_{i=1}^n X_i)^{1/n}$ is an arithmetic mean after taking logs $1/n \sum_{i=1}^n \log X_i$, so if you do know the CI for the arithmetic mean do the same for the logarithms of your data points and take exponents of the upper and lower bounds.

share|improve this answer
When I read the question I wanted to suggest that strategy. But I preferred to wait for other suggestions because something stopped me. What if one of the $X_i$'s is negative? – ocram Mar 16 '11 at 7:46
1  
@Marco, read the footnote in wikipedia for geometric mean. If one goes for the geometric means, he or she assumes that all $X_i$'s are strictly positive (even zero would be not suitable here). Real life data when in levels is mostly positive ^_^ And even if you do some negatives (like gains and loses) split the two and make them positive again ^_^ – Dmitrij Celov Mar 16 '11 at 7:57
i feel that is not appropriate because once taking exponential of the standard deviation doesnt have the meaning. in that time we cant go for confidence interval also – manjunath Mar 27 at 7:09
The answer above is not advocating that. He's saying you calculate $z=\ln x,$ then calculate the arithmetic mean of $z$, call it $\bar z$, along with the corresponding confidence interval $[L,U]$. The geometric mean is then $\exp \{ \bar z \}$, and its CI is $[\exp \{L \},\exp \{U \}].$ You can also do this in a regression setting. – Dimitriy V. Masterov Mar 27 at 7:40
ya i agree that. but is it appropriate?. if you see later that confidence interval. the mean would not come between the confidence interval. According to me, after taking ln and again once we tranformed. then there is no meaningfull interpretation for standard deviation. – manjunath Mar 27 at 7:46
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.