simpleDescribe: Simple Descriptive Statistics for Numerical Data

Description Usage Arguments Examples

View source: R/simpleDescribe.R

Description

Create a table of descriptive statistics for a single numerical variable. This function is dplyr friendly (accepts piping).

Usage

1
simpleDescribe(df, oneVar, rnd = 3, range = FALSE)

Arguments

df

Dataframe of variable location.

oneVar

Variable of numerical nature.

rnd

Rounding of output table (data.frame). Defaults to 3.

range

Logical. Should the range of the variable be included along with Min and Max.

Examples

1
2
3
mtcars %>%
  group_by(cyl) %>%
  simpleDescribe(mpg)

MichaelJMahometa/SDSRegressionR documentation built on March 3, 2021, 10:51 p.m.