SlideShare ist ein Scribd-Unternehmen logo
1 von 18
Downloaden Sie, um offline zu lesen
HYBRID TECHNIQUE FOR ASSOCIATIVE
CLASSIFICATION: A NOVAL APPROACH

Jagdeep Singh
Table of Contents
Introduction

Ø 

Ø  Data

Ø 

Ø 

Mining Process
Ø  Classification
Ø  Association
Ø 
Ø 
Ø 
Ø 

Motivation
Literature Survey
Problem Formulation
Objectives

Ø 

Methodology
Facilities Required
References
Data Mining
Data mining computational process of finding patterns
in large data sets including methods at the intersection
of machine learning, artificial intelligence, statistics
and database systems. The main focus of data mining
process is to obtain information from the data and
converted it into an knowledgeable and reasonable
structure for further use.
Data Mining Process

Figure 1 : The Data Mining Process [10]
Classification
Classification is the problem of identifying to which of
a set of categories a new observation belongs, on the
basis of a training set of data containing observations
(or instances) whose category membership is known.
Association
Association learning method for discovering interesting
relations between variables in large databases. It is
intended to identify strong rules discovered in
databases using different measures of interestingness.

For example, the rule :
{onions, potatoes} => {burger}.
Example : The Weather Problem
ID

outlook

temperature

humidity

windy

play

1

sunny

hot

high

false

no

2

sunny

hot

high

true

no

3

overcast

hot

high

false

yes

4

rainy

mild

high

false

yes

5

rainy

cool

normal

false

yes

6

rainy

cool

normal

true

no

7

overcast

cool

normal

true

yes

8

sunny

mild

high

false

no

9

sunny

cool

normal

false

yes

10

rainy

mild

normal

false

yes

11

sunny

mild

normal

true

yes

12

overcast

mild

high

true

yes

13

overcast

hot

normal

false

yes

14

rainy

mild

high

true

no
Association rules for: Weather Problem
1. humidity=normal windy=FALSE (4) ==> play=yes (4) 
 2. temperature=cool (4)== humidity=normal (4)  	

3. outlook=overcast (4) == play=yes (4)    
 4. temperature=cool play=yes (3) == humidity=normal (3)     
 5. outlook=rainy windy=FALSE (3) == play=yes (3)     
 6. outlook=rainy play=yes (3) == windy=FALSE (3)    
 7. outlook=sunny humidity=high(3) == play=no (3)     
 8. outlook=sunny play=no (3) == humidity=high (3)     
 9. temperature=cool windy=FALSE (2) == humidity=normal play=yes (2)    
10. temperature=cool humidity=normal windy=FALSE (2) == play=yes (2)   
Result new prediction ?

Outlook

Temp.

Humidity

Wind

Sunny

Cool

High

True

Play
Literature Survey
Ø 

Liao et al. [8] author report about data mining techniques and application,
development through a survey of literature, form 2000 to 2011. Paper surveys
three areas of data mining research: knowledge types, analysis types, and
architecture types. A discussion deals with future progress in social science and
Engineering methodologies implement data mining techniques and the development
of applications in problem- oriented

Ø 

The first association rule mining algorithm was the Apriori algorithm [3] developed
by Agrawal, and swami. The Apriori algorithm generates the candidate item sets in
one pass through only the item sets with large support in the previous pass, without
considering the transactions in the database.
Continue…
Ø 

Kwon et al.[9] evaluated the data set features are most affective on
classification algorithms performance. It is a complex problem to find out
which algorithm is highly effective in relation to which data set. Author’s
research experimentally examines how data set characteristics affect
algorithm performance, in terms of elapsed time and accuracy.

Ø 

B. Liu et al. [2] presented an associative classification, to integrate
classification rules and association rule mining. The integration is done by
focusing on mining a special subset of association rules whose consequent
parts are restricted to the classification class labels, called Class Association
Rules (CARs).
Problem Formulation
Ø 

Associative and classification suffers from inefficiency due to the fact that it
often generates a very large number of rules in association rule mining.
Often this leads to generation of a large number of insignificant rules and
at the same time good rules with relatively low support are not produced. It
takes efforts to select high quality rules from among them.

Ø 

Most of the associative classification algorithms adopt the exhaustive search
method presented in the famous Apriori algorithm to discover the rules and
require multiple passes over the database. Furthermore, they find frequent
items in one phase and generate the rules in a separate phase consuming
more resources such as storage and processing time.
Objectives
Ø 

Ø 
Ø 

Purpose a framework that can generate
Classification Association Rules (CARs) efficiently.
Perform evaluation of proposed approach.
Comparative analysis of proposed Algorithm with
other state-of-the-art techniques.
Methodology
Ø 

Ø 

Ø 

Ø 

Review of the classification and association rule
generation methods.
Understanding the existing model associative
classification.
Implement a classification system based on
association rules and compare the performance of
several model construction methods or algorithms in
Weka environment.
Comparison of proposed approach with exiting
methods.
Facilities Required
Ø 

Data mining tools is used for the
implementation of the proposed project
work like Weka.
References
Ø 
Ø 

Ø 

Ø 

Ø 

Ø 

Tom M. Mitchell, “Machine Learning”, 1st ed.U.K.: McGraw-Hill, 1997.
Bing Liu, Wynne Hsu, and Yiming Ma, “Integrating classification and association rule
mining”. In Knowledge Discovery and Data Mining, New York, vol. 2, pp 80–86,
1998.
R. Agrawal and R. Srikant, “Fast algorithms for mining association rules”, In VLDB,
pp. 487-499, Santiago, Chile, September 12-15, 1994.
Wenmin Li, Jiawei Han, and Jian Pei, “CMAR: Accurate and efficient classifi- cation
based on multiple class-association rules”. In ICDM'01 Proc. of the 2001 IEEE
International Conference on Data Mining, pp 369–376, IEEE Computer Society
Washington, DC, USA , 2001.
X. Yin and J. Han, “CPAR: Classification based on Predictive Association Rules,” Proc.
SIAM Int. Conf. on Data Mining, pp. 331-335, San Francisco, CA, May 2003.
Thabtah, Fadi Abdeljaber, “A review of associative classification mining”. Knowledge
Engineering Review, vol. 1, pp. 37-65, 2007.
Continue …
Ø 

Ø 

Ø 

Ø 

T.V.Mahendra, N.Deepika and N.Keasava Rao, “Data Mining for High Performance
Data Cloud using Association Rule Mining”, International Journal of Advanced
Research in Computer Science and Software Engineering, vol. 2, Issue 1, 2012.
S. H. Liao, P. H. Chu, and P. Y. Hsiao, “Data mining techniques and applications – A
decade review from 2000 to 2011”, Elsevier Expert Systems with Applications, vol.
39, pp. 11303–11311, 2012.
Ohbyung Kwon and Jae Mun Sim, “Effects of data set features on the performances
of classification algorithms”, Expert Systems with Applications, vol. 40, pp. 1847–
1857, 2013.
http://www.infovis-wiki.net/index.php?title=File:Fayyad96kdd-process.png
Jagdeep Singh

Weitere ähnliche Inhalte

Was ist angesagt?

Was ist angesagt? (20)

Data mining: Classification and prediction
Data mining: Classification and predictionData mining: Classification and prediction
Data mining: Classification and prediction
 
3. mining frequent patterns
3. mining frequent patterns3. mining frequent patterns
3. mining frequent patterns
 
Data Mining: Concepts and Techniques chapter 07 : Advanced Frequent Pattern M...
Data Mining: Concepts and Techniques chapter 07 : Advanced Frequent Pattern M...Data Mining: Concepts and Techniques chapter 07 : Advanced Frequent Pattern M...
Data Mining: Concepts and Techniques chapter 07 : Advanced Frequent Pattern M...
 
Knowledge Discovery and Data Mining
Knowledge Discovery and Data MiningKnowledge Discovery and Data Mining
Knowledge Discovery and Data Mining
 
Data cubes
Data cubesData cubes
Data cubes
 
Data Ware Housing And Data Mining
Data Ware Housing And Data MiningData Ware Housing And Data Mining
Data Ware Housing And Data Mining
 
Star schema
Star schemaStar schema
Star schema
 
OLAP in Data Warehouse
OLAP in Data WarehouseOLAP in Data Warehouse
OLAP in Data Warehouse
 
Datawarehouse and OLAP
Datawarehouse and OLAPDatawarehouse and OLAP
Datawarehouse and OLAP
 
NoSQL Data Architecture Patterns
NoSQL Data ArchitecturePatternsNoSQL Data ArchitecturePatterns
NoSQL Data Architecture Patterns
 
web mining
web miningweb mining
web mining
 
Presentation on K-Means Clustering
Presentation on K-Means ClusteringPresentation on K-Means Clustering
Presentation on K-Means Clustering
 
Linear models for classification
Linear models for classificationLinear models for classification
Linear models for classification
 
08. Mining Type Of Complex Data
08. Mining Type Of Complex Data08. Mining Type Of Complex Data
08. Mining Type Of Complex Data
 
Data Mining Concepts and Techniques, Chapter 10. Cluster Analysis: Basic Conc...
Data Mining Concepts and Techniques, Chapter 10. Cluster Analysis: Basic Conc...Data Mining Concepts and Techniques, Chapter 10. Cluster Analysis: Basic Conc...
Data Mining Concepts and Techniques, Chapter 10. Cluster Analysis: Basic Conc...
 
Data warehousing
Data warehousingData warehousing
Data warehousing
 
Kdd process
Kdd processKdd process
Kdd process
 
Data Mining: Concepts and techniques classification _chapter 9 :advanced methods
Data Mining: Concepts and techniques classification _chapter 9 :advanced methodsData Mining: Concepts and techniques classification _chapter 9 :advanced methods
Data Mining: Concepts and techniques classification _chapter 9 :advanced methods
 
Data mining Measuring similarity and desimilarity
Data mining Measuring similarity and desimilarityData mining Measuring similarity and desimilarity
Data mining Measuring similarity and desimilarity
 
Data Integration and Transformation in Data mining
Data Integration and Transformation in Data miningData Integration and Transformation in Data mining
Data Integration and Transformation in Data mining
 

Ähnlich wie Associative Classification: Synopsis

Implementation of Improved Apriori Algorithm on Large Dataset using Hadoop
Implementation of Improved Apriori Algorithm on Large Dataset using HadoopImplementation of Improved Apriori Algorithm on Large Dataset using Hadoop
Implementation of Improved Apriori Algorithm on Large Dataset using Hadoop
BRNSSPublicationHubI
 
Hadoop Map-Reduce To Generate Frequent Item Set on Large Datasets Using Impro...
Hadoop Map-Reduce To Generate Frequent Item Set on Large Datasets Using Impro...Hadoop Map-Reduce To Generate Frequent Item Set on Large Datasets Using Impro...
Hadoop Map-Reduce To Generate Frequent Item Set on Large Datasets Using Impro...
BRNSSPublicationHubI
 

Ähnlich wie Associative Classification: Synopsis (20)

Data Mining Classification Comparison (Naïve Bayes and C4.5 Algorithms)
Data Mining Classification Comparison (Naïve Bayes and C4.5 Algorithms)Data Mining Classification Comparison (Naïve Bayes and C4.5 Algorithms)
Data Mining Classification Comparison (Naïve Bayes and C4.5 Algorithms)
 
A SURVEY ON DATA MINING IN STEEL INDUSTRIES
A SURVEY ON DATA MINING IN STEEL INDUSTRIESA SURVEY ON DATA MINING IN STEEL INDUSTRIES
A SURVEY ON DATA MINING IN STEEL INDUSTRIES
 
Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...
Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...
Applying K-Means Clustering Algorithm to Discover Knowledge from Insurance Da...
 
G045033841
G045033841G045033841
G045033841
 
Implementation of Improved Apriori Algorithm on Large Dataset using Hadoop
Implementation of Improved Apriori Algorithm on Large Dataset using HadoopImplementation of Improved Apriori Algorithm on Large Dataset using Hadoop
Implementation of Improved Apriori Algorithm on Large Dataset using Hadoop
 
Configuring Associations to Increase Trust in Product Purchase
Configuring Associations to Increase Trust in Product Purchase Configuring Associations to Increase Trust in Product Purchase
Configuring Associations to Increase Trust in Product Purchase
 
CONFIGURING ASSOCIATIONS TO INCREASE TRUST IN PRODUCT PURCHASE
CONFIGURING ASSOCIATIONS TO INCREASE TRUST IN PRODUCT PURCHASECONFIGURING ASSOCIATIONS TO INCREASE TRUST IN PRODUCT PURCHASE
CONFIGURING ASSOCIATIONS TO INCREASE TRUST IN PRODUCT PURCHASE
 
Classification on multi label dataset using rule mining technique
Classification on multi label dataset using rule mining techniqueClassification on multi label dataset using rule mining technique
Classification on multi label dataset using rule mining technique
 
A literature review of modern association rule mining techniques
A literature review of modern association rule mining techniquesA literature review of modern association rule mining techniques
A literature review of modern association rule mining techniques
 
A Quantified Approach for large Dataset Compression in Association Mining
A Quantified Approach for large Dataset Compression in Association MiningA Quantified Approach for large Dataset Compression in Association Mining
A Quantified Approach for large Dataset Compression in Association Mining
 
Ae32208215
Ae32208215Ae32208215
Ae32208215
 
MINING FUZZY ASSOCIATION RULES FROM WEB USAGE QUANTITATIVE DATA
MINING FUZZY ASSOCIATION RULES FROM WEB USAGE QUANTITATIVE DATAMINING FUZZY ASSOCIATION RULES FROM WEB USAGE QUANTITATIVE DATA
MINING FUZZY ASSOCIATION RULES FROM WEB USAGE QUANTITATIVE DATA
 
Mining Fuzzy Association Rules from Web Usage Quantitative Data
Mining Fuzzy Association Rules from Web Usage Quantitative Data Mining Fuzzy Association Rules from Web Usage Quantitative Data
Mining Fuzzy Association Rules from Web Usage Quantitative Data
 
Document Classification Using Hierarchies Clusters Technique
Document Classification Using Hierarchies Clusters TechniqueDocument Classification Using Hierarchies Clusters Technique
Document Classification Using Hierarchies Clusters Technique
 
Data Mining based on Hashing Technique
Data Mining based on Hashing TechniqueData Mining based on Hashing Technique
Data Mining based on Hashing Technique
 
Review of Algorithms for Crime Analysis & Prediction
Review of Algorithms for Crime Analysis & PredictionReview of Algorithms for Crime Analysis & Prediction
Review of Algorithms for Crime Analysis & Prediction
 
IRJET-Efficient Data Linkage Technique using one Class Clustering Tree for Da...
IRJET-Efficient Data Linkage Technique using one Class Clustering Tree for Da...IRJET-Efficient Data Linkage Technique using one Class Clustering Tree for Da...
IRJET-Efficient Data Linkage Technique using one Class Clustering Tree for Da...
 
Selecting the correct Data Mining Method: Classification & InDaMiTe-R
Selecting the correct Data Mining Method: Classification & InDaMiTe-RSelecting the correct Data Mining Method: Classification & InDaMiTe-R
Selecting the correct Data Mining Method: Classification & InDaMiTe-R
 
Hadoop Map-Reduce To Generate Frequent Item Set on Large Datasets Using Impro...
Hadoop Map-Reduce To Generate Frequent Item Set on Large Datasets Using Impro...Hadoop Map-Reduce To Generate Frequent Item Set on Large Datasets Using Impro...
Hadoop Map-Reduce To Generate Frequent Item Set on Large Datasets Using Impro...
 
An Efficient Approach for Asymmetric Data Classification
An Efficient Approach for Asymmetric Data ClassificationAn Efficient Approach for Asymmetric Data Classification
An Efficient Approach for Asymmetric Data Classification
 

Mehr von Jagdeep Singh Malhi (7)

Hybrid Technique for Associative Classification of Heart Diseases
Hybrid Technique for Associative Classification of Heart DiseasesHybrid Technique for Associative Classification of Heart Diseases
Hybrid Technique for Associative Classification of Heart Diseases
 
Automation
Automation Automation
Automation
 
Kgeography
KgeographyKgeography
Kgeography
 
Introduction to Django
Introduction to DjangoIntroduction to Django
Introduction to Django
 
FILE SERVER
FILE SERVERFILE SERVER
FILE SERVER
 
File Sever
File SeverFile Sever
File Sever
 
Believe IN GOD
Believe  IN  GODBelieve  IN  GOD
Believe IN GOD
 

Kürzlich hochgeladen

Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 

Kürzlich hochgeladen (20)

Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdfUnit 3 Emotional Intelligence and Spiritual Intelligence.pdf
Unit 3 Emotional Intelligence and Spiritual Intelligence.pdf
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdfUGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
UGC NET Paper 1 Mathematical Reasoning & Aptitude.pdf
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Graduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - EnglishGraduate Outcomes Presentation Slides - English
Graduate Outcomes Presentation Slides - English
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 

Associative Classification: Synopsis

  • 1. HYBRID TECHNIQUE FOR ASSOCIATIVE CLASSIFICATION: A NOVAL APPROACH Jagdeep Singh
  • 2. Table of Contents Introduction Ø  Ø  Data Ø  Ø  Mining Process Ø  Classification Ø  Association Ø  Ø  Ø  Ø  Motivation Literature Survey Problem Formulation Objectives Ø  Methodology Facilities Required References
  • 3. Data Mining Data mining computational process of finding patterns in large data sets including methods at the intersection of machine learning, artificial intelligence, statistics and database systems. The main focus of data mining process is to obtain information from the data and converted it into an knowledgeable and reasonable structure for further use.
  • 4. Data Mining Process Figure 1 : The Data Mining Process [10]
  • 5. Classification Classification is the problem of identifying to which of a set of categories a new observation belongs, on the basis of a training set of data containing observations (or instances) whose category membership is known.
  • 6. Association Association learning method for discovering interesting relations between variables in large databases. It is intended to identify strong rules discovered in databases using different measures of interestingness. For example, the rule : {onions, potatoes} => {burger}.
  • 7. Example : The Weather Problem ID outlook temperature humidity windy play 1 sunny hot high false no 2 sunny hot high true no 3 overcast hot high false yes 4 rainy mild high false yes 5 rainy cool normal false yes 6 rainy cool normal true no 7 overcast cool normal true yes 8 sunny mild high false no 9 sunny cool normal false yes 10 rainy mild normal false yes 11 sunny mild normal true yes 12 overcast mild high true yes 13 overcast hot normal false yes 14 rainy mild high true no
  • 8. Association rules for: Weather Problem 1. humidity=normal windy=FALSE (4) ==> play=yes (4)   2. temperature=cool (4)== humidity=normal (4)   3. outlook=overcast (4) == play=yes (4)     4. temperature=cool play=yes (3) == humidity=normal (3)      5. outlook=rainy windy=FALSE (3) == play=yes (3)      6. outlook=rainy play=yes (3) == windy=FALSE (3)     7. outlook=sunny humidity=high(3) == play=no (3)      8. outlook=sunny play=no (3) == humidity=high (3)      9. temperature=cool windy=FALSE (2) == humidity=normal play=yes (2)    10. temperature=cool humidity=normal windy=FALSE (2) == play=yes (2)   
  • 9. Result new prediction ? Outlook Temp. Humidity Wind Sunny Cool High True Play
  • 10. Literature Survey Ø  Liao et al. [8] author report about data mining techniques and application, development through a survey of literature, form 2000 to 2011. Paper surveys three areas of data mining research: knowledge types, analysis types, and architecture types. A discussion deals with future progress in social science and Engineering methodologies implement data mining techniques and the development of applications in problem- oriented Ø  The first association rule mining algorithm was the Apriori algorithm [3] developed by Agrawal, and swami. The Apriori algorithm generates the candidate item sets in one pass through only the item sets with large support in the previous pass, without considering the transactions in the database.
  • 11. Continue… Ø  Kwon et al.[9] evaluated the data set features are most affective on classification algorithms performance. It is a complex problem to find out which algorithm is highly effective in relation to which data set. Author’s research experimentally examines how data set characteristics affect algorithm performance, in terms of elapsed time and accuracy. Ø  B. Liu et al. [2] presented an associative classification, to integrate classification rules and association rule mining. The integration is done by focusing on mining a special subset of association rules whose consequent parts are restricted to the classification class labels, called Class Association Rules (CARs).
  • 12. Problem Formulation Ø  Associative and classification suffers from inefficiency due to the fact that it often generates a very large number of rules in association rule mining. Often this leads to generation of a large number of insignificant rules and at the same time good rules with relatively low support are not produced. It takes efforts to select high quality rules from among them. Ø  Most of the associative classification algorithms adopt the exhaustive search method presented in the famous Apriori algorithm to discover the rules and require multiple passes over the database. Furthermore, they find frequent items in one phase and generate the rules in a separate phase consuming more resources such as storage and processing time.
  • 13. Objectives Ø  Ø  Ø  Purpose a framework that can generate Classification Association Rules (CARs) efficiently. Perform evaluation of proposed approach. Comparative analysis of proposed Algorithm with other state-of-the-art techniques.
  • 14. Methodology Ø  Ø  Ø  Ø  Review of the classification and association rule generation methods. Understanding the existing model associative classification. Implement a classification system based on association rules and compare the performance of several model construction methods or algorithms in Weka environment. Comparison of proposed approach with exiting methods.
  • 15. Facilities Required Ø  Data mining tools is used for the implementation of the proposed project work like Weka.
  • 16. References Ø  Ø  Ø  Ø  Ø  Ø  Tom M. Mitchell, “Machine Learning”, 1st ed.U.K.: McGraw-Hill, 1997. Bing Liu, Wynne Hsu, and Yiming Ma, “Integrating classification and association rule mining”. In Knowledge Discovery and Data Mining, New York, vol. 2, pp 80–86, 1998. R. Agrawal and R. Srikant, “Fast algorithms for mining association rules”, In VLDB, pp. 487-499, Santiago, Chile, September 12-15, 1994. Wenmin Li, Jiawei Han, and Jian Pei, “CMAR: Accurate and efficient classifi- cation based on multiple class-association rules”. In ICDM'01 Proc. of the 2001 IEEE International Conference on Data Mining, pp 369–376, IEEE Computer Society Washington, DC, USA , 2001. X. Yin and J. Han, “CPAR: Classification based on Predictive Association Rules,” Proc. SIAM Int. Conf. on Data Mining, pp. 331-335, San Francisco, CA, May 2003. Thabtah, Fadi Abdeljaber, “A review of associative classification mining”. Knowledge Engineering Review, vol. 1, pp. 37-65, 2007.
  • 17. Continue … Ø  Ø  Ø  Ø  T.V.Mahendra, N.Deepika and N.Keasava Rao, “Data Mining for High Performance Data Cloud using Association Rule Mining”, International Journal of Advanced Research in Computer Science and Software Engineering, vol. 2, Issue 1, 2012. S. H. Liao, P. H. Chu, and P. Y. Hsiao, “Data mining techniques and applications – A decade review from 2000 to 2011”, Elsevier Expert Systems with Applications, vol. 39, pp. 11303–11311, 2012. Ohbyung Kwon and Jae Mun Sim, “Effects of data set features on the performances of classification algorithms”, Expert Systems with Applications, vol. 40, pp. 1847– 1857, 2013. http://www.infovis-wiki.net/index.php?title=File:Fayyad96kdd-process.png