This function calculates 100 percentiles of a vector and returns all of them.

pctile(x)

Arguments

x

A vector.

Details

This function just shorthand for quantile(x,1:100/100), with a shorter name for reference in the vtable or sumtable summ option, and which works with sumtable summ.names styling.

Examples

x <- 1:500
pctile(x)[50]
#>   50% 
#> 250.5 
quantile(x,.5)
#>   50% 
#> 250.5 
median(x)
#> [1] 250.5