arulesViz (version 1.3-3)

ruleExplorer: Explore Association Rules Interactively

Description

Explore association rules using interactive manipulations and visualization using shiny.

Usage

ruleExplorer(x, parameter = NULL)

Arguments

x

a set of rules, a transactions object or a data.frame.

parameter

a list with parameters passed on to apriori. the list can be used to set the initial support and confidence thresholds. Values are ignored if x contains a set of rules.

See Also

plot with engine = "html", inspectDT, apriori.

Examples

Run this code
# NOT RUN {
data(Groceries)

# explore pre-mined rules
rules <- apriori(Groceries, parameter=list(support=0.001, confidence=0.8))
rules

ruleExplorer(rules)

# mine and explore rules on the fly
ruleExplorer(Groceries)
# }

Run the code above in your browser using DataCamp Workspace