powered by
Compute usable summary of columns of tbl.
replyr_summary(x, ..., countUniqueNum = FALSE, countUniqueNonNum = FALSE, cols = NULL, tempNameGenerator = makeTempNameGenerator("replyr_summary"))
tbl or item that can be coerced into such.
force additional arguments to be bound by name.
logical, if true include unique non-NA counts for numeric cols.
logical, if true include unique non-NA counts for non-numeric cols.
if not NULL set of columns to restrict to.
temp name generator produced by replyr::makeTempNameGenerator, used to record dplyr::compute() effects.
summary of columns.
d <- data.frame(x=c(NA,2,3),y=factor(c(3,5,NA)),z=c('a',NA,'z'), stringsAsFactors=FALSE) replyr_summary(d)
Run the code above in your browser using DataLab