I've got some data that I need to be normalized. I've tried several different ways I've found online, none of them work the way I'd like. I've tried (x - mean) / standard_deviation, where x is my value. I've also tried (x - min) / (min - max) as seen here. Those two seem to be the 2 standard way of normalizing data that I've seen.
What I'd like is to normalize the data between 1 and 0, cut it off at 3 decimal places, and still have a data make sense. Right now the numbers at the top are so large that they throw everything else off. The first 3 numbers are .8 somethings, but this it quickly drops off to .2 somethings and .1 somethings.
Any suggestions?