Association Rules & Sequential Patterns
Association Rules & Sequential Patterns
Association Rules & Sequential Patterns
Key Features
Completeness: find all rules.
No target item(s) on the right-hand-side
Mining with data on hard disk (not in memory)
AB AC AD BC BD CD
A B C D
After join
C4 = {{1, 2, 3, 4}, {1, 3, 4, 5}}
After pruning:
C4 = {{1, 2, 3, 4}}
because {1, 4, 5} is not in F3 ({1, 3, 4, 5} is removed)
Transaction form:
(Attr1, a), (Attr2, b), (Attr3, d)
(Attr1, b), (Attr2, c), (Attr3, e)
Let minsup = 20% and minconf = 60%. The following are two
examples of class association rules:
Student, School Education [sup= 2/7, conf = 2/2]
game Sport [sup= 2/7, conf = 2/3]