
Last chance! 50% off unlimited learning
Sale ends in
Get the row corresponding to a given percentile
select_percentile(df = NULL, percentile = NULL, descend = FALSE)
A dataframe showing the row corresponding to the required percentile.
A `data.frame` object for which a percentile is required. Other data structures are not yet supported.
The percentile required eg 10 percentile
Logical. Should the data be arranged in descending order? Defaults to FALSE.
Returns the value corresponding to a percentile. Returns mean values if the position of the percentile is whole number. Values are sorted in ascending order. You can change this by setting descend to TRUE.
data("yields", package="manymodelr")
select_percentile(yields,5)
Run the code above in your browser using DataLab