Learn R Programming

arules (version 1.5-0)

is.significant: Find Significant Rules

Description

Provides the generic functions and the S4 method is.significant to find rules where the LHS and the RHS depend on each other. This uses Fisher's exact test and corrects for multiple comparisons.

Usage

is.significant(x, transactions, alpha = 0.01, adjust = "bonferroni")

Arguments

x
a set of rules.
transactions
set of transactions used to mine the rules.
alpha
required significance level.
adjust
method to adjust for multiple comparisons. Options are "none", "bonferroni", "holm", "fdr", etc. (see p.adjust)

Value

returns a logical vector indicating which rules are significant.

See Also

interestMeasure, p.adjust

Examples

Run this code
data("Income")
rules <- apriori(Income, parameter = list(support = 0.5))
is.significant(rules, Income)

inspect(rules[is.significant(rules, Income)])

Run the code above in your browser using DataLab