tabulateRows function

Tabulate data.frame rows

Tabulate data.frame rows

Like tabulate but entire rows are the unit of tabulation. The data.frame is not sorted, but must be sorted already.

tabulateRows(observed)

Arguments

  • observed: a sorted data.frame holding ordered factors in every column

Examples

df <- as.data.frame(matrix(c(sample.int(2, 30, replace=TRUE)), 10, 3)) df <- df[orderCompletely(df),] tabulateRows(df)

See Also

orderCompletely