ds_measures_symmetry | R Documentation |
Returns the measures of symmetry such as skewness and kurtosis.
ds_measures_symmetry(data, ..., decimals = 2)
data |
A |
... |
Column(s) in |
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_symmetry(mtcarz, mpg)
# multiple columns
ds_measures_symmetry(mtcarz, mpg, disp)
# all columns
ds_measures_symmetry(mtcarz)
# vector
ds_measures_symmetry(mtcarz$mpg)
# vectors of different length
disp <- mtcarz$disp[1:10]
ds_measures_symmetry(mtcarz$mpg, disp)
# decimal places
ds_measures_symmetry(mtcarz, disp, hp, decimals = 3)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.