range01 {demcon} | R Documentation |
Standardize a vector to 0-1 using the cumulative distribution function of the normal distribution.
range01(x)
x |
A vector of numeric values. |
A standardized numeric vector scaled to 0-1.
nums<-rnorm(50, 6.5, 3)
nums<-demcon::range01(nums)