ruleExplorer | R Documentation |
Explore association rules using interactive manipulations and visualization using shiny.
ruleExplorer(x, sidebarWidth = 2, graphHeight = "600px")
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. |
returns a shiny app.
Tyler Giallanza and Michael Hahsler. Adapted from functions originally created by Andrew Brooks. See Rsenal for the original code.
Hahsler M (2017). arulesViz: Interactive Visualization of Association Rules with R. R Journal, 9(2):163-175. ISSN 2073-4859. \Sexpr[results=rd]{tools:::Rd_expr_doi("10.32614/RJ-2017-047")}.
plot()
with engine = "html"
,
inspectDT()
, arules::apriori()
.
## 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)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.