powered by
Convert numeric vector into its percentile. For example, 1:5 will become c(0,25,50,75,100).
percentile(dat)
A integer vector in [0,100]. Minimum value always becomes 0 and maximum always becomes 100.
A numeric vector, which will be converted into percentile value.
Minato Nakazawa minatonakazawa@gmail.com https://minato.sip21c.org/
percentile(1:5) X <- runif(1000, 10, 20) percentile(X)
Run the code above in your browser using DataLab