tableUnlist: Frequency table for data frames, e.g. across multiple columns

View source: R/tableUnlist.r

tableUnlistR Documentation

Frequency table for data frames, e.g. across multiple columns

Description

Replaces the somehow buggy function combination table(unlist(data)).

Usage

tableUnlist(dataFrame, useNA = c("no", "ifany",
    "always"))

Arguments

dataFrame

Data frame with more than one column.

useNA

whether to include NA values in the table. See help file of table for more details.

Value

A frequency table

Examples

dat  <- data.frame ( matrix ( data = sample(0:1,200,replace=TRUE), nrow=20, ncol=10))
tableUnlist(dat)

eatTools documentation built on Nov. 23, 2023, 5:06 p.m.