Association Analysis Flashcards

1
Q

Association Rule Mining

A

Given a set of transactions, find rules that will predict the occurrence of an item based on the occurrences of other items in the transaction.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

2 Rule Evaluation Metrics

A

Support - A measure of absolute frequency (Fraction that contain an itemset)
Confidence (c): A measure of correlative frequency.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

3 Step of Brute-force approach

A

List all possible association rules
Compute the support and confidence for each rule
Prune rules that fail the minsup and minconf

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Formula of

Total number of itemsets
Total number of possible association rules
Combination Formula

A

Total number of itemsets = 2k-1
Total number of possible association rules: 3k - 2k+1 + 1
Combination Formula: C(n,r) = nCr = n! / ((n - r )! * r!)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

2 Method of Candidate Generation

A

Fk-1 * F1 Method
Fk-1 * Fk-1 Method

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Maximal frequent itemset

A

An itemset is maximal frequent if it is frequent and none of its immediate supersets is frequent.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Closed Itemset

A

An itemset X is closed if none of its immediate supersets has the same support as the itemset X.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly