data.frame
summarise_stats.Rd
A customized summary of a data.frame.
summarise_stats(data, col, na.rm = TRUE, ..., tidy = FALSE, key = "stat", value = "value", convert = TRUE)
data | A |
---|---|
col | A character for the SE version; a symbol for NSE version.
The name of column in |
na.rm | A logical value passed to |
... | Additional arguments passed to internal |
tidy | A logical value indicating whether to put output in long (i.e. "tidy") format. |
key, value, convert | Parameters corresponding with those of the same name for |
A tibble.
The purpose of this function is equivalent to that of similar functions in
other packages, such as skimr::skim()
.
This function outputs the following n
, mean
, median
, sd
,
min
, max
, zn1
, zp1
, q25
, q75
, q05
, q95
.
The _at
versions of this function are SE evaluation. (i.e. They take characters
as column names.) ~~The _by
version(s) of this function allows
for groups to be specificed as an input, although this function will detect groups
and respect their integrity (meaning that the _by
version(s) are simply
provided as an alternative means).~~