cont_long_fun: Function for continuous long summaries

View source: R/summary-functions.R

cont_long_funR Documentation

Function for continuous long summaries

Description

Function for continuous long summaries

Usage

cont_long_fun(value, digit_fun = sig, digits = 3, na_fill = "--", ...)

Arguments

value

the data to summarize

digit_fun

a function to format digits in the summaries

digits

the number of digits in the summary; the current implementation passes digits to digit_fun()

na_fill

value to fill with when all values in the summary are missing

...

not used

Value

The function returns a tibble with one row and five columns:

  1. n the number of non-missing observations in value

  2. Mean the mean of value

  3. Median the median of value

  4. SD the standard deviation of value

  5. Min / Max the range of value

All columns are returned as character.

Examples

pmtables:::cont_long_fun(rnorm(100))


metrumresearchgroup/pmtables documentation built on Oct. 27, 2024, 5:16 p.m.