ds_measures_location | R Documentation |
Returns the measures of location such as mean, median & mode.
ds_measures_location(data, ..., trim = 0.05, decimals = 2)
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. |
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.