Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save madilk/5a7b89eed5efcb40f38f3ff88f9bf54b to your computer and use it in GitHub Desktop.
Save madilk/5a7b89eed5efcb40f38f3ff88f9bf54b to your computer and use it in GitHub Desktop.
arules market basket lift visualization in r plus shiny
#https://github.com/mhahsler/arulesViz#standard-visualization
#install.packages("shiny")
library(shiny)
#install.packages("shinythemes")
library(shinythemes)
rules <- apriori(tr, parameter = list(support = 0.02, confidence = 0.02))
ruleExplorer(rules)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment