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.

I am analyzing a large of dataset (n>100) of incident rates, with the aim of forming a normal distribution. Then I will know if a future incident rate (x%) is either close to a historical mean or not, and can score/rate it accordingly with an already created formula.

The data is positively-skewed, as most data points cluster around or near zero percent. I HAVE to transform this data into a normal distribution, correct? What is the preferred method when dealing with percentages (these will always be between 0 and 100%)? Are there alternative non-normalizing methods I can use to reach my desired output?

Anyway, let's say I've transformed the data and it follows a normal distribution. Now I can find the mean and std dev, then plot these in Excel using z-scores. Then I should be able to determine if incident rate x% is in the top 10%, top 20% of values, and score it with my formula accordingly.

Any problems with this method?

share|improve this question

1 Answer

You don't need to transform to a normal distribution to see if a particular value is the top tenth or top fifth of observations. All you need to do is sort your observations (and count them).

share|improve this answer
I made this way harder than I needed to, didn't I? haha. Thanks for the input. – Jope May 4 '11 at 15:31

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.