Learn R Programming

tidycomm (version 0.0.1)

describe: Describe variables

Description

Describe variables by several measures of central tendency and variability. If no variables are specified, all numeric (integer or double) variables are described.

Usage

describe(data, ..., na.rm = TRUE)

Arguments

data
...

Variables to describe (column names). Leave empty to describe all numeric variables in data.

na.rm

a logical value indicating whether NA values should be stripped before the computation proceeds. Defaults to TRUE.

Value

a tibble

Examples

Run this code
# NOT RUN {
iris %>% describe()
mtcars %>% describe(mpg, am, cyl)

# }

Run the code above in your browser using DataLab