Given a tibble
or data.frame
extract unique examples for
each column. This function is not publically available, but maybe a future
version will be.
Arguments
- dataset
tibble
ordata.frame
of interest- cell.blank.tf
constructed within
dataset.summary()
using the commandpurrr::map_dfc(dataset, is.BLANK)
and returns a tibble the same dimensions asdataset
and indicates whether or not each cell is blank.TRUE
indicates the cell is blank andFALSE
indicates it contains some type of value.NA
s aredplyr::coalesce()
d intoFALSE
.- cell.NA.tf
constructed within
dataset.summary()
using the commandpurrr::map_dfc(dataset, is.na)
and returns a tibble the same dimensions asdataset
and indicates whether or not each cell is blank.TRUE
indicates the cell contains aNA
andFALSE
indicates it contains some type of value.- size
integer value indicating the number examples to return
Author
Emilio Xavier Esposito emilio.esposito@gmail.com (https://github.com/emilioxavier)