apriori: Mining Associations with the Apriori Algorithm
Description
Usage
apriori(data,
support = 0.01,
confidence = 0.01,
minlen = 2);
Arguments
data
object of class transactions. Any data structure which can be coerced into
transactions (e.g., a binary matrix, a data.frame or a tibble) can also
be specified and will be internally coerced to transactions.