Describe Percentiles
describePercentiles.Rd
Provides a table of percentile statistics for each variable or group.
Usage
# S3 method for data.frame
describePercentiles(frame, ...)
# S3 method for formula
describePercentiles(formula, ...)
Arguments
- frame
a set of (non-empty) numeric vectors of data values
- formula
a formula of the form
lhs ~ rhs
wherelhs
is a numeric variable giving the data values andrhs
a factor giving the corresponding groups
Value
The returned frame contains the following components:
- Min
the minimum values for the variables or groups
- 25
the values of the 25th percentile for the variables or groups
- 50
the values of the 50th percentile for the variables or groups
- 75
the values of the 25th percentile for the variables or groups
- Max
the maximum values for the variables or groups