- In this recipe, we introduced three visualization methods to plot association rules. However, arulesViz also provides features to plot parallel coordinate plots, double-decker plots, mosaic plots, and other related charts. For those who are interested in how these plots work, you may refer to: Hahsler, M., and Chelluboina, S. (2011). Visualizing association rules: Introduction to the R-extension package arulesViz. R project module.
- In addition to generating a static plot, you can generate an interactive plot by setting interactive equal to TRUE through the following steps:
> plot(rules.pruned,interactive=TRUE)
The interactive ...