Descriptive statistics for multiple variables.

ds_multi_stats(x, ...)

Arguments

x

A tibble or a data.frame.

...

Columns in x.

Value

A tibble.

Deprecated function

multistats() has been deprecated. Instead use ds_multi_stats()

Examples

ds_multi_stats(mtcarz, mpg, disp, hp)
#> # A tibble: 3 x 16 #> vars min max mean t_mean median mode range variance stdev skew #> <chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> #> 1 disp 71.1 472 231. 228 196. 276. 401. 15361. 124. 0.420 #> 2 hp 52 335 147. 144. 123 110 283 4701. 68.6 0.799 #> 3 mpg 10.4 33.9 20.1 20.0 19.2 10.4 23.5 36.3 6.03 0.672 #> # ... with 5 more variables: kurtosis <dbl>, coeff_var <dbl>, q1 <dbl>, #> # q3 <dbl>, iqrange <dbl>