powered by
This function normalizes the values in a vector to the range [new_min, new_max] based on their original range [old_min, old_max].
normalize(x_vector, old_min, old_max, new_min, new_max)
A numeric vector with the normalized values.
A numeric vector that you want to normalize.
The minimum value in the original scale of the data.
The maximum value in the original scale of the data.
The minimum value in the new scale to which you want to normalize the data.
The maximum value in the new scale to which you want to normalize the data.
normalize(c(1, 2, 3, 4, 5), 1, 5, 0, 1)
Run the code above in your browser using DataLab