Click here to Skip to main content
15,881,700 members
Articles / Programming Languages / C#

Apriori Algorithm

Rate me:
Please Sign up or sign in to vote.
4.91/5 (84 votes)
10 Aug 2012CPOL2 min read 577.7K   10.8K   149   149
Implementation of the Apriori algorithm in C#.

Image 1

Introduction

In data mining, Apriori is a classic algorithm for learning association rules. Apriori is designed to operate on databases containing transactions (for example, collections of items bought by customers, or details of a website frequentation).

Other algorithms are designed for finding association rules in data having no transactions (Winepi and Minepi), or having no timestamps (DNA sequencing).

Overview

The whole point of the algorithm (and data mining, in general) is to extract useful information from large amounts of data. For example, the information that a customer who purchases a keyboard also tends to buy a mouse at the same time is acquired from the association rule below:

Support: The percentage of task-relevant data transactions for which the pattern is true.

Support (Keyboard -> Mouse) = AprioriAlgorithm/eq_1.JPG

Confidence: The measure of certainty or trustworthiness associated with each discovered pattern.

Confidence (Keyboard -> Mouse) = AprioriAlgorithm/eq_2.JPG

The algorithm aims to find the rules which satisfy both a minimum support threshold and a minimum confidence threshold (Strong Rules).

  • Item: article in the basket.
  • Itemset: a group of items purchased together in a single transaction.

How Apriori Works

  1. Find all frequent itemsets:
    • Get frequent items:
      • Items whose occurrence in database is greater than or equal to the min.support threshold.
    • Get frequent itemsets:
      • Generate candidates from frequent items.
      • Prune the results to find the frequent itemsets.
  2. Generate strong association rules from frequent itemsets
    • Rules which satisfy the min.support and min.confidence threshold.

High Level Design

AprioriAlgorithm/1-Apriori_HLD_Big.JPG

Low Level Design

AprioriAlgorithm/Apriori_LLD.jpg 

Example 

A database has five transactions. Let the min sup = 50% and min con f = 80%.

AprioriAlgorithm/3-DB.JPG

Solution 

Step 1: Find all Frequent Itemsets

AprioriAlgorithm/4-Example.JPG

Frequent Itemsets

{A}   {B}   {C}   {E}   {A C}   {B C}   {B E}   {C E}   {B C E}

Step 2: Generate strong association rules from the frequent itemsets

AprioriAlgorithm/5-StrongRules.JPG

Lattice

Closed Itemset: support of all parents are not equal to the support of the itemset.

Maximal Itemset: all parents of that itemset must be infrequent.

Keep in mind:

AprioriAlgorithm/6-Set.JPG

AprioriAlgorithm/7-Lattice.JPG

Itemset {c} is closed as support of parents (supersets) {A C}:2, {B C}:2, {C D}:1, {C E}:2 not equal support of {c}:3.

And the same for {A C}, {B E} & {B C E}.

Itemset {A C} is maximal as all parents (supersets) {A B C}, {A C D}, {A C E} are infrequent.

And the same for {B C E}.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Egypt Egypt
Enthusiastic programmer/researcher, passionate to learn new technologies, interested in problem solving, data structures, algorithms, AI, machine learning and nlp.

Amateur guitarist/ keyboardist, squash player.

Comments and Discussions

 
QuestionApriori Algorithm Pin
Member 1199820920-Sep-15 10:34
Member 1199820920-Sep-15 10:34 
QuestionEfficient Data Mining Software Pin
Member 1051770411-Jul-15 2:21
Member 1051770411-Jul-15 2:21 
Questionrequest for your Aprori java code Pin
Member 1175977411-Jun-15 11:00
Member 1175977411-Jun-15 11:00 
Questionrequest for apriori code in php Pin
mau_lida6-Jun-15 0:23
mau_lida6-Jun-15 0:23 
QuestionThanks Pin
Adam_adam1-May-15 0:40
professionalAdam_adam1-May-15 0:40 
QuestionRegarding apriori algorithm Pin
Member 1138385413-Apr-15 2:31
Member 1138385413-Apr-15 2:31 
QuestionQuery regarding extension of this code for strings Pin
Member 112361666-Apr-15 7:58
Member 112361666-Apr-15 7:58 
Generalthanks Pin
hope_amal28-Mar-15 10:16
hope_amal28-Mar-15 10:16 
this is useful
QuestionRequest for Aprori code in java Pin
Member 114197271-Feb-15 21:02
Member 114197271-Feb-15 21:02 
AnswerRe: Request for Aprori code in java Pin
Member 1156231327-Mar-15 23:23
Member 1156231327-Mar-15 23:23 
GeneralNeed code for Closed and maximal frequent item set Pin
Member 1141126828-Jan-15 22:45
Member 1141126828-Jan-15 22:45 
Questionplease send me the apriori algorith code 76511207@qq.com Pin
Member 1125434324-Dec-14 19:59
Member 1125434324-Dec-14 19:59 
Questionplease send me the apriori algorith code Pin
Member 111309425-Oct-14 8:34
Member 111309425-Oct-14 8:34 
AnswerRe: please send me the apriori algorith code Pin
Member 1030011418-Oct-14 0:00
professionalMember 1030011418-Oct-14 0:00 
QuestionCan I have the C# code Pin
Member 1087192112-Jun-14 3:53
Member 1087192112-Jun-14 3:53 
AnswerRe: Can I have the C# code Pin
Omar Gameel Salem12-Jun-14 16:24
professionalOmar Gameel Salem12-Jun-14 16:24 
QuestionHelp me Pin
Virtual Scholar6-May-14 14:04
Virtual Scholar6-May-14 14:04 
QuestionMMAC algorithm Pin
Xuan Dung Phu Yen16-Mar-14 19:15
Xuan Dung Phu Yen16-Mar-14 19:15 
Questiondo you know? high-utility rule mining? Pin
hothi_vuong14-Mar-14 4:23
hothi_vuong14-Mar-14 4:23 
QuestionApriory Algo Implementation Pin
Member 106110551-Mar-14 0:56
Member 106110551-Mar-14 0:56 
Questionlimit to your code Pin
yogeshwarmisal27-Feb-14 19:32
yogeshwarmisal27-Feb-14 19:32 
AnswerRe: limit to your code Pin
Omar Gameel Salem27-Feb-14 21:11
professionalOmar Gameel Salem27-Feb-14 21:11 
Questionhow this algo will take my sql server table rows as transaction? Pin
Mona198618-Jan-14 9:29
Mona198618-Jan-14 9:29 
QuestionApriori Pin
Member 1022814823-Aug-13 6:42
Member 1022814823-Aug-13 6:42 
Questionhelp Pin
milad199130-Jun-13 22:14
milad199130-Jun-13 22:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.