Learn R Programming

arulesViz (version 1.5-0)

ruleExplorer: Explore Association Rules Interactively

Description

Explore association rules using interactive manipulations and visualization using shiny.

Usage

ruleExplorer(x, sidebarWidth = 2, graphHeight = '600px')

Arguments

x

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

sidebarWidth

width of the sidebar as a number between 0 (= 0% of the display width) and 12 (= 100% of the display width).

graphHeight

height of the plots in pixels. Increase if you have a larger/higher resolution display.

References

Hahsler M (2017). arulesViz: Interactive Visualization of Association Rules with R. R Journal, 9(2):163-175. ISSN 2073-4859. 10.32614/RJ-2017-047.

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
data(iris)
ruleExplorer(iris)
# }

Run the code above in your browser using DataLab