SlideShare a Scribd company logo
1 of 24
MG-CHARM
ANURAG SAXENA
by
Minimal generator close hierarchical association rule mining
Contents
 Abstract
 Introduction
 Scope
 Existing System
 Proposed System
 Algorithm
 Example
 Design
 Functional Diagram
 Structural Diagram
 Screens
 Conclusion
 References
Abstract
 In Data Mining, Frequent Closed Itemsets (FCIs) are usually fewer than frequent
itemsets.
 However, it is necessary to find Minimal Generators (mGs) for association rule from
them.
 The finding mGs approaches based on generating candidate loose timelines when
the number of FCIs are large.
 To overcome the loose of timelines we implemented an algorithm called MG-
CHARM.
Introduction
 An efficient and fast algorithm for finding mGs of FCIs.
 Time of MG-CHARM is fewer than the time of finding mGs after finding all closed
itemsets (CHARM), especially in case of the length of each FCI is long.
 At present, almost all algorithms for mining mGs of FCIs are based on Apriori
algorithm.
 Applying for Market Basket Analysis.
Scope
Although Market Basket Analysis conjures up pictures of shopping carts, and
supermarket shoppers, it is important to realize that there are many other areas in which
it can be applied.
These include:
 Analysis of credit card purchases.
 Analysis of telephone calling patterns.
 Identification of fraudulent medical insurance claims.
 Analysis of telecom service purchases.
Existing System
 In first method, found candidates that are mGs first, then defined their closures to
find out FCIs.
 In second method, found all FIs using CHARM algorithm.
 Then used level-wise method to find out all mGs that correspond to each closed
itemset.
Proposed System
 Both of the previous methods have the disadvantage in large size of frequent
itemsets since the number of considered candidates is large.
 The proposed method is a fast algorithm for mining mGs based on CHARM.
 It overcomes the disadvantage of above two methods by using CHARM to generate
FCI and also find mGs of them.
 This proposed algorithm is named as MG-CHARM.
Algorithm
Input: The database D and support
threshold minS
Output: all FCI satisfy minSup and their
Method:
MG-CHARM(D, minSup)
[0]={IjXl(li) ,(li): t,E 1/ cr(/ i) :2: minSup}
MG-CIIARM-EXTEND([0], C= 0 )
Return C
MG-CHARM-EXTEND([P], C)
for each lixI(lj),mG(li) in [PJ do
Pi= Pj U Ii and [PiJ = 0
for each IjxI(lj),mG(Ij) in [PJ,with j > i do
X = Ij and Y=I(li) n 1(1j)
MG-CHARM-PROPERTY(XxY,/i,lj ,Pi,
[Pi],[P])
SUBSUMPTION-CHECK(C, Pi)
MG-CIIARM-EXTEND([Pi],C)
MG-CHARM-PROPERTY(XxY,li,lj,Pi,
[Pi],[P])
if cr(X):2: minSup then
if I(Ii) = I@ then II property I
Remove Ij from P
Pi=Pi UIj
mG(Pi) = mG(Pi) +mG(lj)
else if I(li)C I@ then II property 2
Pi =Pj ulj
else if l(lj) :::J I(lj) then II property 3
Remove Ij from [P]
Add Xx Y,mG(Ij) to [Pi]
else if I(li) *-1(1j) then II property 4
AddXxY, u [mG(li), mG@]to [Pi]
Example
1. Transaction Database
Consider the database
Transaction
ID
Content
1 A, C, T, W
2 C, D, W
3 A, C, T, W
4 A, C, D, W
5 A, C, D, T, W
6 C, D, T
Example database
Item Transactions
A 1, 3, 4, 5
C 1, 2, 3, 4, 5, 6
D 2, 4, 5, 6
T 1, 3, 5, 6
W 1, 2, 3, 4, 5
Vertical format
2. Support
 The number of transactions that has the given item set.
Support of ACW=4
3. Frequent Itemset
 An item set is said to be frequent item set if it is greater than or equal to the
minSup.
 minSup is the value given by the user.
If minSup = 4 then ACW is a frequent item set.
4. Galois Connection
t(ACW) = t(A)  t(C)  t(W) i(245) = i(2)  i(4)  i(5)
= 1345  123456  12345 = CDW  ACDW ACDTW
= 1345 = CDW
X t(X)
i(Y) Yi
t
5. Closure Operator
 If c(X) = i(t(X)) then c(X) is called closure operator.
c(AW) = i(t(AW))
= i(1345)
= ACW
6. Frequent Closed Itemset
 An item set X is said to be frrequent closed itemset if X is
- Frequent Itemset and
- Closure
Illustrations
Consider minSup = 50%
Since number of transactions = 6
minSup = 3
{}123456
A1345T1356 C123456D2456 W12345
W CATD
Illustration of updating mG
{}123456
A1345T1356 C123456D2456 W12345
W CATDC
DT56
DT
DWC245
DW
DA45
DA
Functional Diagram
Use Case Diagram
Sequence Diagram
Structural Diagram
Screens
Logon Screen
Recruit Employee Screen for Admin
Frequent Items
Frequent Items
Conclusion
 This is a new method for mining mGs of FCIs need not generate candidates.
Experiments showed that the time of updating mGs of frequent closed
itemsets is insignifant. Especially in case of the large case of frequent
itemsets, the time of updating is very fewer than the methods implementd
before.
 In future, we can apply this achievement to the problems of mining non-
redundant association rules, non-redundant rules query.
References
[1]. IEEE supporting paper on the title “Fast Algorithm for Mining Minimal Generators
of Frequent Closed Itemsets and Their Applications”.
Link: http://ieeexplore.ieee.org/
[2]. Previous knowledge about mining frequent patterns, associations, and
correlations from the text book ‘Data Mining Concepts and techniques by
Micheline Kamber 2nd Edition’.
[3]. Information about Market basket Analysis.
Link: http://www.information-drivers.com/market_basket_analysis.php
Final year presentation Mg charm  - Anuragsaxena

More Related Content

Similar to Final year presentation Mg charm - Anuragsaxena

A feasible solution algorithm for a primitive vehicle routing problem
A feasible solution algorithm for a primitive vehicle routing problemA feasible solution algorithm for a primitive vehicle routing problem
A feasible solution algorithm for a primitive vehicle routing problem
Cem Recai Çırak
 
Scheduling advertisements on a web page to maximize revenue
Scheduling advertisements on a web page to maximize revenueScheduling advertisements on a web page to maximize revenue
Scheduling advertisements on a web page to maximize revenue
Shu-Jeng Hsieh
 
MC0079 SMU 2013 Falll Session
MC0079 SMU 2013 Falll SessionMC0079 SMU 2013 Falll Session
MC0079 SMU 2013 Falll Session
Narinder Kumar
 

Similar to Final year presentation Mg charm - Anuragsaxena (20)

CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...
CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...
CLUSTBIGFIM-FREQUENT ITEMSET MINING OF BIG DATA USING PRE-PROCESSING BASED ON...
 
DESIGN OF DELAY COMPUTATION METHOD FOR CYCLOTOMIC FAST FOURIER TRANSFORM
DESIGN OF DELAY COMPUTATION METHOD FOR CYCLOTOMIC FAST FOURIER TRANSFORMDESIGN OF DELAY COMPUTATION METHOD FOR CYCLOTOMIC FAST FOURIER TRANSFORM
DESIGN OF DELAY COMPUTATION METHOD FOR CYCLOTOMIC FAST FOURIER TRANSFORM
 
Clustbigfim frequent itemset mining of
Clustbigfim frequent itemset mining ofClustbigfim frequent itemset mining of
Clustbigfim frequent itemset mining of
 
Risk modeling prortfolio diversification 4.0
Risk modeling prortfolio diversification 4.0Risk modeling prortfolio diversification 4.0
Risk modeling prortfolio diversification 4.0
 
Modified montgomery modular multiplier for cryptosystems
Modified montgomery modular multiplier for cryptosystemsModified montgomery modular multiplier for cryptosystems
Modified montgomery modular multiplier for cryptosystems
 
DESIGN AND ALGORITHM.pptx BCA BANGALORECITY UNIVERSITY
DESIGN AND ALGORITHM.pptx BCA BANGALORECITY UNIVERSITYDESIGN AND ALGORITHM.pptx BCA BANGALORECITY UNIVERSITY
DESIGN AND ALGORITHM.pptx BCA BANGALORECITY UNIVERSITY
 
L14-Caches-I.pptx
L14-Caches-I.pptxL14-Caches-I.pptx
L14-Caches-I.pptx
 
Linear models
Linear modelsLinear models
Linear models
 
algorithm homework help ppt.pptx
algorithm homework help ppt.pptxalgorithm homework help ppt.pptx
algorithm homework help ppt.pptx
 
Data Structures and Algorithms Lecture 2: Analysis of Algorithms, Asymptotic ...
Data Structures and Algorithms Lecture 2: Analysis of Algorithms, Asymptotic ...Data Structures and Algorithms Lecture 2: Analysis of Algorithms, Asymptotic ...
Data Structures and Algorithms Lecture 2: Analysis of Algorithms, Asymptotic ...
 
Thiele
ThieleThiele
Thiele
 
A feasible solution algorithm for a primitive vehicle routing problem
A feasible solution algorithm for a primitive vehicle routing problemA feasible solution algorithm for a primitive vehicle routing problem
A feasible solution algorithm for a primitive vehicle routing problem
 
An Area-efficient Montgomery Modular Multiplier for Cryptosystems
An Area-efficient Montgomery Modular Multiplier for CryptosystemsAn Area-efficient Montgomery Modular Multiplier for Cryptosystems
An Area-efficient Montgomery Modular Multiplier for Cryptosystems
 
Analysis of Algorithm
Analysis of AlgorithmAnalysis of Algorithm
Analysis of Algorithm
 
D'ARIANO WCRR 2016
D'ARIANO WCRR 2016D'ARIANO WCRR 2016
D'ARIANO WCRR 2016
 
List intersection for web search: Algorithms, Cost Models, and Optimizations
List intersection for web search: Algorithms, Cost Models, and OptimizationsList intersection for web search: Algorithms, Cost Models, and Optimizations
List intersection for web search: Algorithms, Cost Models, and Optimizations
 
Differential Machine Learning Masterclass
Differential Machine Learning MasterclassDifferential Machine Learning Masterclass
Differential Machine Learning Masterclass
 
Scheduling advertisements on a web page to maximize revenue
Scheduling advertisements on a web page to maximize revenueScheduling advertisements on a web page to maximize revenue
Scheduling advertisements on a web page to maximize revenue
 
MC0079 SMU 2013 Falll Session
MC0079 SMU 2013 Falll SessionMC0079 SMU 2013 Falll Session
MC0079 SMU 2013 Falll Session
 
Quality management 2
Quality management 2Quality management 2
Quality management 2
 

Recently uploaded

一比一原版(Soton毕业证书)南安普顿大学毕业证原件一模一样
一比一原版(Soton毕业证书)南安普顿大学毕业证原件一模一样一比一原版(Soton毕业证书)南安普顿大学毕业证原件一模一样
一比一原版(Soton毕业证书)南安普顿大学毕业证原件一模一样
Fi
 
一比一原版田纳西大学毕业证如何办理
一比一原版田纳西大学毕业证如何办理一比一原版田纳西大学毕业证如何办理
一比一原版田纳西大学毕业证如何办理
F
 
一比一原版(毕业证书)新西兰怀特克利夫艺术设计学院毕业证原件一模一样
一比一原版(毕业证书)新西兰怀特克利夫艺术设计学院毕业证原件一模一样一比一原版(毕业证书)新西兰怀特克利夫艺术设计学院毕业证原件一模一样
一比一原版(毕业证书)新西兰怀特克利夫艺术设计学院毕业证原件一模一样
AS
 
一比一定制加州大学欧文分校毕业证学位证书
一比一定制加州大学欧文分校毕业证学位证书一比一定制加州大学欧文分校毕业证学位证书
一比一定制加州大学欧文分校毕业证学位证书
A
 
一比一定制波士顿学院毕业证学位证书
一比一定制波士顿学院毕业证学位证书一比一定制波士顿学院毕业证学位证书
一比一定制波士顿学院毕业证学位证书
A
 
一比一原版(NYU毕业证书)美国纽约大学毕业证学位证书
一比一原版(NYU毕业证书)美国纽约大学毕业证学位证书一比一原版(NYU毕业证书)美国纽约大学毕业证学位证书
一比一原版(NYU毕业证书)美国纽约大学毕业证学位证书
c6eb683559b3
 
一比一定制美国罗格斯大学毕业证学位证书
一比一定制美国罗格斯大学毕业证学位证书一比一定制美国罗格斯大学毕业证学位证书
一比一定制美国罗格斯大学毕业证学位证书
A
 
一比一原版帝国理工学院毕业证如何办理
一比一原版帝国理工学院毕业证如何办理一比一原版帝国理工学院毕业证如何办理
一比一原版帝国理工学院毕业证如何办理
F
 
Jual obat aborsi Bekasi ( 085657271886 ) Cytote pil telat bulan penggugur kan...
Jual obat aborsi Bekasi ( 085657271886 ) Cytote pil telat bulan penggugur kan...Jual obat aborsi Bekasi ( 085657271886 ) Cytote pil telat bulan penggugur kan...
Jual obat aborsi Bekasi ( 085657271886 ) Cytote pil telat bulan penggugur kan...
ZurliaSoop
 
一比一原版(Dundee毕业证书)英国爱丁堡龙比亚大学毕业证如何办理
一比一原版(Dundee毕业证书)英国爱丁堡龙比亚大学毕业证如何办理一比一原版(Dundee毕业证书)英国爱丁堡龙比亚大学毕业证如何办理
一比一原版(Dundee毕业证书)英国爱丁堡龙比亚大学毕业证如何办理
AS
 
一比一原版英国格林多大学毕业证如何办理
一比一原版英国格林多大学毕业证如何办理一比一原版英国格林多大学毕业证如何办理
一比一原版英国格林多大学毕业证如何办理
AS
 
一比一定制(Waikato毕业证书)新西兰怀卡托大学毕业证学位证书
一比一定制(Waikato毕业证书)新西兰怀卡托大学毕业证学位证书一比一定制(Waikato毕业证书)新西兰怀卡托大学毕业证学位证书
一比一定制(Waikato毕业证书)新西兰怀卡托大学毕业证学位证书
AS
 
一比一原版犹他大学毕业证如何办理
一比一原版犹他大学毕业证如何办理一比一原版犹他大学毕业证如何办理
一比一原版犹他大学毕业证如何办理
F
 
100^%)( POLOKWANE))(*((+27838792658))*))௹ )Abortion Pills for Sale in Sibasa,...
100^%)( POLOKWANE))(*((+27838792658))*))௹ )Abortion Pills for Sale in Sibasa,...100^%)( POLOKWANE))(*((+27838792658))*))௹ )Abortion Pills for Sale in Sibasa,...
100^%)( POLOKWANE))(*((+27838792658))*))௹ )Abortion Pills for Sale in Sibasa,...
musaddumba454
 

Recently uploaded (20)

一比一原版(Soton毕业证书)南安普顿大学毕业证原件一模一样
一比一原版(Soton毕业证书)南安普顿大学毕业证原件一模一样一比一原版(Soton毕业证书)南安普顿大学毕业证原件一模一样
一比一原版(Soton毕业证书)南安普顿大学毕业证原件一模一样
 
一比一原版田纳西大学毕业证如何办理
一比一原版田纳西大学毕业证如何办理一比一原版田纳西大学毕业证如何办理
一比一原版田纳西大学毕业证如何办理
 
一比一原版(毕业证书)新西兰怀特克利夫艺术设计学院毕业证原件一模一样
一比一原版(毕业证书)新西兰怀特克利夫艺术设计学院毕业证原件一模一样一比一原版(毕业证书)新西兰怀特克利夫艺术设计学院毕业证原件一模一样
一比一原版(毕业证书)新西兰怀特克利夫艺术设计学院毕业证原件一模一样
 
Free on Wednesdays T Shirts Free on Wednesdays Sweatshirts
Free on Wednesdays T Shirts Free on Wednesdays SweatshirtsFree on Wednesdays T Shirts Free on Wednesdays Sweatshirts
Free on Wednesdays T Shirts Free on Wednesdays Sweatshirts
 
Washington Football Commanders Redskins Feathers Shirt
Washington Football Commanders Redskins Feathers ShirtWashington Football Commanders Redskins Feathers Shirt
Washington Football Commanders Redskins Feathers Shirt
 
Registry Data Accuracy Improvements, presented by Chimi Dorji at SANOG 41 / I...
Registry Data Accuracy Improvements, presented by Chimi Dorji at SANOG 41 / I...Registry Data Accuracy Improvements, presented by Chimi Dorji at SANOG 41 / I...
Registry Data Accuracy Improvements, presented by Chimi Dorji at SANOG 41 / I...
 
一比一定制加州大学欧文分校毕业证学位证书
一比一定制加州大学欧文分校毕业证学位证书一比一定制加州大学欧文分校毕业证学位证书
一比一定制加州大学欧文分校毕业证学位证书
 
[Hackersuli] Élő szövet a fémvázon: Python és gépi tanulás a Zeek platformon
[Hackersuli] Élő szövet a fémvázon: Python és gépi tanulás a Zeek platformon[Hackersuli] Élő szövet a fémvázon: Python és gépi tanulás a Zeek platformon
[Hackersuli] Élő szövet a fémvázon: Python és gépi tanulás a Zeek platformon
 
Down bad crying at the gym t shirtsDown bad crying at the gym t shirts
Down bad crying at the gym t shirtsDown bad crying at the gym t shirtsDown bad crying at the gym t shirtsDown bad crying at the gym t shirts
Down bad crying at the gym t shirtsDown bad crying at the gym t shirts
 
一比一定制波士顿学院毕业证学位证书
一比一定制波士顿学院毕业证学位证书一比一定制波士顿学院毕业证学位证书
一比一定制波士顿学院毕业证学位证书
 
一比一原版(NYU毕业证书)美国纽约大学毕业证学位证书
一比一原版(NYU毕业证书)美国纽约大学毕业证学位证书一比一原版(NYU毕业证书)美国纽约大学毕业证学位证书
一比一原版(NYU毕业证书)美国纽约大学毕业证学位证书
 
一比一定制美国罗格斯大学毕业证学位证书
一比一定制美国罗格斯大学毕业证学位证书一比一定制美国罗格斯大学毕业证学位证书
一比一定制美国罗格斯大学毕业证学位证书
 
一比一原版帝国理工学院毕业证如何办理
一比一原版帝国理工学院毕业证如何办理一比一原版帝国理工学院毕业证如何办理
一比一原版帝国理工学院毕业证如何办理
 
Jual obat aborsi Bekasi ( 085657271886 ) Cytote pil telat bulan penggugur kan...
Jual obat aborsi Bekasi ( 085657271886 ) Cytote pil telat bulan penggugur kan...Jual obat aborsi Bekasi ( 085657271886 ) Cytote pil telat bulan penggugur kan...
Jual obat aborsi Bekasi ( 085657271886 ) Cytote pil telat bulan penggugur kan...
 
一比一原版(Dundee毕业证书)英国爱丁堡龙比亚大学毕业证如何办理
一比一原版(Dundee毕业证书)英国爱丁堡龙比亚大学毕业证如何办理一比一原版(Dundee毕业证书)英国爱丁堡龙比亚大学毕业证如何办理
一比一原版(Dundee毕业证书)英国爱丁堡龙比亚大学毕业证如何办理
 
一比一原版英国格林多大学毕业证如何办理
一比一原版英国格林多大学毕业证如何办理一比一原版英国格林多大学毕业证如何办理
一比一原版英国格林多大学毕业证如何办理
 
一比一定制(Waikato毕业证书)新西兰怀卡托大学毕业证学位证书
一比一定制(Waikato毕业证书)新西兰怀卡托大学毕业证学位证书一比一定制(Waikato毕业证书)新西兰怀卡托大学毕业证学位证书
一比一定制(Waikato毕业证书)新西兰怀卡托大学毕业证学位证书
 
Lowongan Kerja LC Yogyakarta Terbaru 085746015303
Lowongan Kerja LC Yogyakarta Terbaru 085746015303Lowongan Kerja LC Yogyakarta Terbaru 085746015303
Lowongan Kerja LC Yogyakarta Terbaru 085746015303
 
一比一原版犹他大学毕业证如何办理
一比一原版犹他大学毕业证如何办理一比一原版犹他大学毕业证如何办理
一比一原版犹他大学毕业证如何办理
 
100^%)( POLOKWANE))(*((+27838792658))*))௹ )Abortion Pills for Sale in Sibasa,...
100^%)( POLOKWANE))(*((+27838792658))*))௹ )Abortion Pills for Sale in Sibasa,...100^%)( POLOKWANE))(*((+27838792658))*))௹ )Abortion Pills for Sale in Sibasa,...
100^%)( POLOKWANE))(*((+27838792658))*))௹ )Abortion Pills for Sale in Sibasa,...
 

Final year presentation Mg charm - Anuragsaxena

  • 1. MG-CHARM ANURAG SAXENA by Minimal generator close hierarchical association rule mining
  • 2. Contents  Abstract  Introduction  Scope  Existing System  Proposed System  Algorithm  Example  Design  Functional Diagram  Structural Diagram  Screens  Conclusion  References
  • 3. Abstract  In Data Mining, Frequent Closed Itemsets (FCIs) are usually fewer than frequent itemsets.  However, it is necessary to find Minimal Generators (mGs) for association rule from them.  The finding mGs approaches based on generating candidate loose timelines when the number of FCIs are large.  To overcome the loose of timelines we implemented an algorithm called MG- CHARM.
  • 4. Introduction  An efficient and fast algorithm for finding mGs of FCIs.  Time of MG-CHARM is fewer than the time of finding mGs after finding all closed itemsets (CHARM), especially in case of the length of each FCI is long.  At present, almost all algorithms for mining mGs of FCIs are based on Apriori algorithm.  Applying for Market Basket Analysis.
  • 5. Scope Although Market Basket Analysis conjures up pictures of shopping carts, and supermarket shoppers, it is important to realize that there are many other areas in which it can be applied. These include:  Analysis of credit card purchases.  Analysis of telephone calling patterns.  Identification of fraudulent medical insurance claims.  Analysis of telecom service purchases.
  • 6. Existing System  In first method, found candidates that are mGs first, then defined their closures to find out FCIs.  In second method, found all FIs using CHARM algorithm.  Then used level-wise method to find out all mGs that correspond to each closed itemset.
  • 7. Proposed System  Both of the previous methods have the disadvantage in large size of frequent itemsets since the number of considered candidates is large.  The proposed method is a fast algorithm for mining mGs based on CHARM.  It overcomes the disadvantage of above two methods by using CHARM to generate FCI and also find mGs of them.  This proposed algorithm is named as MG-CHARM.
  • 8. Algorithm Input: The database D and support threshold minS Output: all FCI satisfy minSup and their Method: MG-CHARM(D, minSup) [0]={IjXl(li) ,(li): t,E 1/ cr(/ i) :2: minSup} MG-CIIARM-EXTEND([0], C= 0 ) Return C MG-CHARM-EXTEND([P], C) for each lixI(lj),mG(li) in [PJ do Pi= Pj U Ii and [PiJ = 0 for each IjxI(lj),mG(Ij) in [PJ,with j > i do X = Ij and Y=I(li) n 1(1j) MG-CHARM-PROPERTY(XxY,/i,lj ,Pi, [Pi],[P]) SUBSUMPTION-CHECK(C, Pi) MG-CIIARM-EXTEND([Pi],C) MG-CHARM-PROPERTY(XxY,li,lj,Pi, [Pi],[P]) if cr(X):2: minSup then if I(Ii) = I@ then II property I Remove Ij from P Pi=Pi UIj mG(Pi) = mG(Pi) +mG(lj) else if I(li)C I@ then II property 2 Pi =Pj ulj else if l(lj) :::J I(lj) then II property 3 Remove Ij from [P] Add Xx Y,mG(Ij) to [Pi] else if I(li) *-1(1j) then II property 4 AddXxY, u [mG(li), mG@]to [Pi]
  • 9. Example 1. Transaction Database Consider the database Transaction ID Content 1 A, C, T, W 2 C, D, W 3 A, C, T, W 4 A, C, D, W 5 A, C, D, T, W 6 C, D, T Example database Item Transactions A 1, 3, 4, 5 C 1, 2, 3, 4, 5, 6 D 2, 4, 5, 6 T 1, 3, 5, 6 W 1, 2, 3, 4, 5 Vertical format
  • 10. 2. Support  The number of transactions that has the given item set. Support of ACW=4 3. Frequent Itemset  An item set is said to be frequent item set if it is greater than or equal to the minSup.  minSup is the value given by the user. If minSup = 4 then ACW is a frequent item set.
  • 11. 4. Galois Connection t(ACW) = t(A)  t(C)  t(W) i(245) = i(2)  i(4)  i(5) = 1345  123456  12345 = CDW  ACDW ACDTW = 1345 = CDW X t(X) i(Y) Yi t
  • 12. 5. Closure Operator  If c(X) = i(t(X)) then c(X) is called closure operator. c(AW) = i(t(AW)) = i(1345) = ACW 6. Frequent Closed Itemset  An item set X is said to be frrequent closed itemset if X is - Frequent Itemset and - Closure
  • 13. Illustrations Consider minSup = 50% Since number of transactions = 6 minSup = 3 {}123456 A1345T1356 C123456D2456 W12345 W CATD
  • 14. Illustration of updating mG {}123456 A1345T1356 C123456D2456 W12345 W CATDC DT56 DT DWC245 DW DA45 DA
  • 22. Conclusion  This is a new method for mining mGs of FCIs need not generate candidates. Experiments showed that the time of updating mGs of frequent closed itemsets is insignifant. Especially in case of the large case of frequent itemsets, the time of updating is very fewer than the methods implementd before.  In future, we can apply this achievement to the problems of mining non- redundant association rules, non-redundant rules query.
  • 23. References [1]. IEEE supporting paper on the title “Fast Algorithm for Mining Minimal Generators of Frequent Closed Itemsets and Their Applications”. Link: http://ieeexplore.ieee.org/ [2]. Previous knowledge about mining frequent patterns, associations, and correlations from the text book ‘Data Mining Concepts and techniques by Micheline Kamber 2nd Edition’. [3]. Information about Market basket Analysis. Link: http://www.information-drivers.com/market_basket_analysis.php