summary_cat | R Documentation |
Summary statistics for categoric variables.
summary_cat(x)
x |
A character vector |
A tibble with:
- n: the number of observations;
- na: the number of missing values;
- blank_space: the number of values blank ("");
- n_distinct: the number of distinct levels;
- mode: the mode.
x <- c(sample(letters,100,replace = TRUE),NA)
x
summary_cat(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.