Learn R Programming

arules (version 1.7-2)

crossTable: Cross-tabulate joint occurrences across pairs of items

Description

Provides the generic function crossTable and the S4 method to cross-tabulate joint occurrences across all pairs of items.

Usage

crossTable(x, ...) 

# S4 method for itemMatrix crossTable(x, measure = c("count", "support", "probability", "lift"), sort = FALSE)

Arguments

x

object to be cross-tabulated (transactions or itemMatrix).

measure

measure to return. Default is co-occurrence counts.

sort

sort the items by support.

...

additional arguments.

Value

A symmetric matrix of n time n, where n is the number of items times in x. The matrix contains the co-occurrence counts between pairs of items.

See Also

transactions-class, itemMatrix-class.

Examples

Run this code
# NOT RUN {
data("Groceries")

ct <- crossTable(Groceries, sort=TRUE)
ct[1:5, 1:5]

sp <- crossTable(Groceries, measure="support", sort=TRUE)
sp[1:5,1:5]

lift <- crossTable(Groceries, measure="lift", sort=TRUE)
lift[1:5,1:5]
# }

Run the code above in your browser using DataLab