apriori {apriori} R Documentation

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.

env

[as Environment]

Details

Authors

MLkit

Value

Returns an object of class rules or itemsets.

clr value class

Examples


[Package apriori version 1.0.0.0 Index]