Association Rules

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/9

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 3:47 AM on 4/22/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

10 Terms

1
New cards

What is the purpose of applying association rules?

seeks to uncover associations and/or correlation relationships in large data sets (market‑basket analysis, recommendation, cross‑selling). 

2
New cards

What is Apriori Property?

Any subset of a frequent itemset must also be frequent.

3
New cards

What is a frequent itemset?

An itemset whose support meets or exceeds a user‑defined minimum support threshold.

4
New cards

Why confidence is not a good measure used to select rules?

5
New cards

Understand the association rules implementations

6
New cards

Pros of association rules

  • Handles purely categorical data; no need for numeric scaling.

  • Produces human‑readable if‑then statements.

7
New cards

Cons of association rules

  • Can generate an overwhelming number of rules; requires post‑filtering (lift, leverage, domain knowledge).

  • Sensitive to minimum support choice

— too high = miss useful patterns

— too low = many spurious rules.

8
New cards

What is support leverage? How to calculate and interpret them?

the percentage (or number) of transactions that include all items both antecedent and consequent.

<p>the percentage (or number) of transactions that include all items both antecedent and consequent.</p>
9
New cards

What is confidence leverage? How to calculate and interpret them?

the measure of certainty or trustworthiness associated with each discovered rule

  • how likely item Y is purchased when item X is purchased

  • the percent of transactions that contain both X and Y out of all the transactions that contain X

<p>the measure of certainty or trustworthiness associated with each discovered rule</p><ul><li><p>how likely item Y is purchased when item X is purchased</p></li><li><p class="p1"> the percent of transactions that contain both X and Y out of all the transactions that contain X</p></li></ul><p></p>
10
New cards

What is lift leverage? How to calculate and interpret them?

How many times more often X and Y occur together than expected if they are statistically independent of each other

  • How likely item Y is purchased when item X is purchased, while controlling for how popular item Y is

  • A larger value of lift suggests a greater strength of the association between X and Y

<p>How many times more often X and Y occur together than expected if they are statistically independent of each other</p><ul><li><p class="p2">How likely item Y is purchased when item X is purchased, while controlling for how popular item Y is</p></li><li><p class="p2">A larger value of lift suggests a greater strength of the association between X and Y</p></li></ul><p></p>