Shrink or stretch a vector to make it range between 0 and 1
This function re-scales a numeric vector so that it ranges between 0 and 1 (i.e., the lowest value becomes 0, the highest becomes 1, and the ones in the middle retain their rank and relative diference).
range01(x, na.rm = TRUE)
x |
a numeric vector. |
na.rm |
logical, whether to remove |
This function was borrowed from http://stackoverflow.com/questions/5468280/scale-a-series-between-two-points-in-r/5468527#5468527 and adapted to handle also missing values.
A numeric vector of the same length as the input, now with the values ranging from 0 to 1.
A. Marcia Barbosa
range01(0:10) range01(-12.3 : 21.7)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.