powered by
Convert numeric vector into its percentile. For example, 1:5 will become c(0,25,50,75,100).
percentile(dat)
A numeric vector, which will be converted into percentile value.
A integer vector in [0,100]. Minimum value always becomes 0 and maximum always becomes 100.
# NOT RUN { percentile(1:5) X <- runif(1000, 10, 20) percentile(X) # }
Run the code above in your browser using DataLab