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
tibbleordata.frameof interest- cell.blank.tf
constructed within
dataset.summary()using the commandpurrr::map_dfc(dataset, is.BLANK)and returns a tibble the same dimensions asdatasetand indicates whether or not each cell is blank.TRUEindicates the cell is blank andFALSEindicates it contains some type of value.NAs 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 asdatasetand indicates whether or not each cell is blank.TRUEindicates the cell contains aNAandFALSEindicates 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)