I hereby claim:
- I am joe631 on github.
- I am joe631 (https://keybase.io/joe631) on keybase.
- I have a public key whose fingerprint is 7BD6 FCE3 17A6 E7B0 4E07 0A9A DA35 2B81 B9B6 CF4F
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
Joe C
if i have a distribution of numbers from 0 to 800, some less than 1, what is the best way to put them on a scale from 0 to 1
To normalize a distribution of numbers from 0 to 800 to a scale from 0 to 1, you can use the min-max normalization technique. This method scales the data based on the minimum and maximum values in the dataset. Here's the formula for min-max normalization:
normalized_value = (value - min) / (max - min)
In your case, the minimum value (min) is 0, and the maximum value (max) is 800. So the formula simplifies to:
normalized_value = value / 800