ASSOCIATION RULES MINING
The goal of this procedure it’s, given a list of item-set, finding association rules that have and grater than some thresholds
BRUTE-FORCE APPROACH
generate all possible combination and compute and , this approach is always possible but is too much computational expensive
TWO STEP APPROACH
this approach is based on the fact that rules that are generated from the same item-set have the same
- frequent itemset generation → in the first step all item-set that have are generated (this step is still computational expensive)
- RULE GENERATION → in the second step rules with high confidence are generated from the previous generated item-sets