R/scale_minmax.R
scale_minmax.Rd
Scale a vector to the range [0, 1]
scale_minmax(x)
A numeric vector
A numeric vector scaled to the range [0, 1]
scale_minmax(c(1, 2, 3)) #> [1] 0.0 0.5 1.0