3

How can I transform a variable (non linear transformation) such that its values are more evenly spread, that is reduce the peak in the middle of the histogram and move more into tails?

Jeromy Anglim
  • 44,984
user333
  • 7,211

1 Answers1

3

The transform that most evens things out is the rank transform (just replace the data by the ranks). If there are no ties then the result is uniform.

If data is fairly normal (bell shaped) then the inverse of the normal distribution will spread towards uniform. Actually any s-shaped curve will tend to do this including the arctangent and inverse logit (center and choose an appropriate scale first).

Greg Snow
  • 51,722