ASSOCIATION RULES

They are rules that describes situation where the presence of a given element or a combination of elements assure the presence of a third element , they are based on statistics.

DEFINITIONS

  • ITEMSET A collection of one or more items.
  • K-ITEMSET An itemset that contains k items.
  • SUPPORT COUNT Frequency of occurrence of an itemset.
  • SUPPORT Fraction of transactions that contain an itemset.
  • FREQUENT ITEMSET An itemset whose support is greater than or equal to a minsup threshold.

Association rules can be described by the form

is called antecedent and is called consequent

METRICS

SUPPORT

the fraction of transaction that contains both and

CONFIDENCE

the number of times appears over transactions that contains

CONFIDENCE FROM SUPPORT

confidence can also be computed from supports as

support measures “how much” an occurrence can be considered a rule (there must be enough transaction cases), a rule with low support can be generated by random associations

confidence measures how much a rule is represented in the transactions that contains it

NEXT