The Procedure of Discovering Association Rules
1. Find all frequent itemsets: sets of items whose support is greater than the user-specified minimum support.
2. Generate the desired rules: if ABCD and AB are frequent itemsets, then compute the ratio
conf = support(ABCD)/support(AB).
If conf >= mincof, then add rule AB => CD.