tbl_explorer | R Documentation |
Counts all unique values in an entire dataset across all columns.
tbl_explorer(x, min = 1, drop_numeric = FALSE)
x |
Dataset |
min |
Numeric cutoff point for minimum number of observation occurrences. Can be a proportion or an integer value. |
drop_numeric |
Logical argument to drop numeric columns with a lot of variability. |
A dataframe with column and value counts.
tibble::tibble(a = c('A','B', NA),
b = c(1.2, 1.2, 1.2),
c = c(4.5, NA, NA)) %>%
tbl_explorer()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.