⚠️There's a newer version (1.5-2) of this package. Take me there.

arulesViz - Visualizing Association Rules and Frequent Itemsets with R

This R package extends package arules with various visualization techniques for association rules and itemsets. The package also includes several interactive visualizations for rule exploration.

Installation

Stable CRAN version: install from within R with

install.packages("arulesViz")

Current development version: Download package from AppVeyor or install from GitHub (needs devtools).

library("devtools")
install_github("mhahsler/arulesViz")

This might also require the development version of arules.

Features

  • Visualizations using base and/or grid.
  • Interactive visualizations using grid.
  • Interactive visualizations with package plotly.
  • Interactive rule inspection with package datatable.

Available Visualizations:

  • Scatterplot, two-key plot
  • Matrix and matrix 3D visualization
  • Grouped matrix-based visualization
  • Several graph-based visualizations
  • Doubledecker and mosaic plots
  • Parallel Coordinate plot

Usage

Mine some rules.

library(arulesViz)
data(Groceries)
rules <- apriori(Groceries, parameter=list(support=0.005, confidence=0.5))

Standard visualization

plot(rules)

Interactive visualization with plotly

plotly_arules(rules)

Open example output.

Interactive inspect with datatable

inspectDT(rules)

Open example output.

References

Copy Link

Version

Down Chevron

Install

install.packages('arulesViz')

Monthly Downloads

12,033

Version

1.3-1

License

GPL-3

Issues

Pull Requests

Stars

Forks

Maintainer

Last Published

April 24th, 2018

Functions in arulesViz (1.3-1)