Itemset
Support count (σ)
Support
Frequent itemset
Apriori Algorithm
Created by Agrawal and Srikant in 1994
A classic algorithm for discovering association rules
How does the algorithm work?
Steps for the Apriori Algorithm
Step 1
Generate 1-itemset frequent pattern based on a defined minimum support value. this set is denoted L1.
Step 2
L1 is used to find L2, the set of frequent 2-itemsets, which is used to find L3
Step 3
Repeat until no more frequent k-itemsets can be found
</p>
Most data warehouses adopt a star schema
Uses fact (facts or measures in the business) and dimension (establishes the context of the facts) tables
Each dimension is represented by a dimension-table
Transactions are described through a fact table
Easier for users to understand
Optimized for OLAP (online analytical processing)
</p>
\