tableUnlist {eatRep} | R Documentation |
Replaces the somehow buggy function combination table(unlist(data)).
tableUnlist(dataFrame, verbose = TRUE, useNA = c("no", "ifany", "always"))
dataFrame |
Data frame with more than one column. |
verbose |
Logical: print messages to console? |
useNA |
whether to include NA values in the table. See help file of |
A freqency table
Sebastian Weirich
dat <- data.frame ( matrix ( data = sample(0:1,200,replace=TRUE), nrow=20, ncol=10)) tableUnlist(dat)