Skip to contents

count, mean, sd, quantile values.

Usage

describe(i)

Arguments

i

data

Value

named list

See also

base summary function

Examples

describe(iris[,"Sepal.Width"])
#> $count
#> [1] 150
#> 
#> $m
#> [1] 3.057
#> 
#> $s
#> [1] 0.436
#> 
#> $q0
#> 0% 
#>  2 
#> 
#> $q1
#> 25% 
#> 2.8 
#> 
#> $q2
#> 50% 
#>   3 
#> 
#> $q3
#> 75% 
#> 3.3 
#> 
#> $q4
#> 100% 
#>  4.4 
#> 
describe(iris$Sepal.Length) # this will be work too.
#> $count
#> [1] 150
#> 
#> $m
#> [1] 5.843
#> 
#> $s
#> [1] 0.828
#> 
#> $q0
#>  0% 
#> 4.3 
#> 
#> $q1
#> 25% 
#> 5.1 
#> 
#> $q2
#> 50% 
#> 5.8 
#> 
#> $q3
#> 75% 
#> 6.4 
#> 
#> $q4
#> 100% 
#>  7.9 
#>