ds_measures_location {descriptr} | R Documentation |
Measures of location
Description
Returns the measures of location such as mean, median & mode.
Usage
ds_measures_location(data, ..., trim = 0.05, decimals = 2)
Arguments
data |
A |
... |
Column(s) in |
trim |
The fraction of values to be trimmed before computing the mean. |
decimals |
An option to specify the exact number of decimal places to use. The default number of decimal places is 2. |
Examples
# single column
ds_measures_location(mtcarz, mpg)
# multiple columns
ds_measures_location(mtcarz, mpg, disp)
# all columns
ds_measures_location(mtcarz)
# vector
ds_measures_location(mtcarz$mpg)
# vectors of different length
disp <- mtcarz$disp[1:10]
ds_measures_location(mtcarz$mpg, disp)
# decimal places
ds_measures_location(mtcarz, disp, hp, decimals = 3)
[Package descriptr version 0.6.0 Index]