des: A Simple Descriptive Statistics Function

Description Usage Arguments Examples

Description

Reports the mean, standard deviation, median, and inter-quartile range. Simple, decluttered output.

Usage

1
des(x, na.rm = FALSE)

Arguments

x

An R object. Accepts three forms of the extract operator, the slot operator is untested.

na.rm

a logical value indicating whether NA values should be removed before computation. Defaults to FALSE.

Examples

1
2
x <- sample(1:100, size = 100, replace = TRUE)
des(x)

jonathanbart/baxtr documentation built on May 23, 2019, 4:04 a.m.