October 2017
Beginner to intermediate
572 pages
26h 1m
English
Perform the following steps to analyze the association rules:
> data(Groceries)
> summary(Groceries)
> itemFrequencyPlot(Groceries, support = 0.1, cex.names=0.8, topN=5)

> rules = apriori(Groceries, parameter = list(supp = 0.001, conf = 0.5, target= "rules")) > summary(rules) Output ...