SlideShare a Scribd company logo
Integrated Intelligent Research (IIR) International Journal of Data Mining Techniques and Applications
Volume: 03 Issue: 01 June 2014, Page No. 30- 32
ISSN:2278-2419
30
Analysis of Classification Algorithm in Data
Mining
R. Aruna devi1
,K. Nirmala2
1
Research Scholar, Manonmaniam Sundaranar University, Tirunelveli, Tamil Nadu, India
2
Associate Professor, Department of Computer Science, Quaid-E- Millath Government College for Women (A), Chennai, Tamil
Nadu, India
Email-arunaa_2008@yahoo.com, nimimca@yahoo.com
Abstract-Data Mining is the extraction of hidden predictive
information from large database. Classification is the process
of finding a model that describes and distinguishes data classes
or concept. This paper performs the study of prediction of class
label using C4.5 and Naïve Bayesian algorithm.C4.5 generates
classifiers expressed as decision trees from a fixed set of
examples. The resulting tree is used to classify future samples
.The leaf nodes of the decision tree contain the class name
whereas a non-leaf node is a decision node. The decision node
is an attribute test with each branch (to another decision tree)
being a possible value of the attribute. C4.5 uses information
gain to help it decide which attribute goes into a decision node.
A Naïve Bayesian classifier is a simple probabilistic classifier
based on applying Baye’s theorem with strong (naive)
independence assumptions. Naive Bayesian classifier assumes
that the effect of an attribute value on a given class is
independent of the values of the other attribute. This
assumption is called class conditional independence. The
results indicate that Predicting of class label using Naïve
Bayesian classifier is very effective and simple compared to
C4.5 classifier.
Keywords: Data Mining, Classification, Naïve Bayesian
Classifier, Entropy
I. INTRODUCTION
Data mining is the extraction of implicit, previously unknown,
and potentially useful information from large databases. It uses
machine learning, statistical and visualization techniques to
discover and present knowledge in a form, which is easily
comprehensible to humans. Data mining functionalities are
used to specify the kind of patterns to be found in data mining
tasks. Data mining task can be classified into two categories:
Descriptive and Predictive. Descriptive mining tasks
characterize the general properties of the data in the database[1]
.
Predictive mining tasks perform inference on the current data
in order to make prediction. Classification is the process of
finding a model that describes and distinguishes data classes /
concepts. The goal of data mining is to extract knowledge from
a data set in a human-understandable structure and involves
database and data management, data preprocessing, model and
inference considerations, complexity considerations, post-
processing of found structure, visualization and online
updating. The actual data-mining task is the automatic or semi-
automatic analysis of large quantities of data to extract
previously unknown interesting patterns such as groups of data
records (cluster analysis), unusual records (anomaly detection)
and dependencies (association rule mining). A primary reason
for using data mining is to assist in the analysis of collections
of observations of behavior. Data mining involves six common
classes of tasks.(1)Anomaly detection – The identification of
unusual data records, that might be interesting or data errors
and require further investigation.(2)Association rule learning-
Searches for relationships between variables.(3) Clustering – is
the task of discovering groups and structures in the data that
are in some way or another "similar", without using known
structures in the data.(4)Classification – is the task of
generalizing known structure to apply to new
data.(5)Regression – Attempts to find a function which models
the data with the least error.(6)Summarization – providing a
more compact representation of the data set, including
visualization and report generation.
II. ALGORITHM
C4.5 algorithm is introduced by Quinlan for inducing
Classification Models, also called Decision Trees[13]
. We are
given a set of records. Each record has the same structure,
consisting of a number of attribute/value pairs. One of these
attributes represents the category of the record. The problem is
to determine a decision tree that on the basis of answers to
questions about the non-category attributes predicts correctly
the value of the category attribute. Usually the category
attribute takes only the values {true, false}, or {success,
failure}, or something equivalent.
The C4.5 algorithm can be summarized as follows:
Step 1: Given a set of S cases, C4.5 first grows an initial tree
using the concept of information entropy. The training data is a
set S=S1, S2, of already classified samples. Each sample Si=X1,
X2... is a vector where X1, X2, represent attributes or features of
the sample. The training data is augmented with a
vector C = c1, c2, where c1, c2, represent the class to which
each sample belongs.
Step 2: At each node of the tree, C4.5 chooses one attribute of
the data that most effectively splits its set of samples into
subsets enriched in one class or the other. Its criterion is the
normalized information gain that results from choosing an
attribute for splitting the data. The attribute with the highest
normalized information gain is chosen to make the decision.
Step 3: Create a decision tree based on the best node
Step 4: Apply the same procedure recursively
III. NAÏVE BAYESIAN
Integrated Intelligent Research (IIR) International Journal of Data Mining Techniques and Applications
Volume: 03 Issue: 01 June 2014, Page No. 30- 32
ISSN:2278-2419
31
A Naive Bayesian classifier is a simple probabilistic classifier
based on applying Baye’s theorem with strong (naive)
independence assumptions. A more descriptive term for the
underlying probability model would be "independent feature
model"[2]
. In simple terms, a Naive Baye’s classifier assumes
that the presence (or absence) of a particular feature of a class
is unrelated to the presence (or absence) of any other feature,
given the class variable.
Depending on the precise nature of the probability model,
naive Baye’s classifiers can be trained very efficiently in a
supervised learning setting. In many practical applications,
parameter estimation for naive Baye’s models uses the method
of maximum likelihood; in other words, one can work with the
naive Baye’s model without believing in Bayesian probability
or using any Bayesian methods. In spite of their naive design
and apparently over-simplified assumptions, naive Baye’s
classifiers have worked quite well in many complex real-world
situations.
Given data sets with many attributes, it would be extremely
computationally expensive to compute P(X/Ci). In order to
reduce computation in evaluating P(X/Ci), the naïve
assumption of class conditional independence is made. This
presumes that the values of the attributes are conditionally
independent of one another, given the class label of the tuple
(i.e., that there are no dependence relationships among the
attributes). Thus,P(X1/Ci)× P(X2/Ci)× … ×P(Xn/Ci).
easily estimate the probabilities P(X1/Ci) ,P(X2/Ci…P(Xn/Ci)
from the training tuples .Recall that here Xk refers to the value
of attribute Ak for tuple X.
IV. DATASET DESCRIPTION
The main objective of this paper is to use classification
algorithm to predict the class label using C4.5 classifier and
Bayesian classifier on the large dataset. The model used in this
paper predicts the status of the tuple having the values
department has “system” who are 26..30 years, have income
46..50K[2]
.
Table 1: Department
V. EXPERIMENTAL RESULTS AND DISCUSSIONS
In this paper we wish to study of C4.5 and Naïve Bayesian
classification, given the training data as in Table 1. The data
tuple are described by the attributes department, status, age and
salary. The class label attribute status, has two distinct values
namely { Senior,Junior }.Let C1 corresponds to the class
Status=”Junior” and C2 correspond to Status=”Senior”. The
tuple we wish to classify is,
X=(dept=”system”,age=”26..30”,salary=”46..50k”)
A. Algorithm
C4.5 uses a statistical property, called information gain. Gain
measures how well a given attribute separates training
examples into targeted classes. The one with the highest
information is selected as test attribute. In order to define gain,
we first borrow an idea from information theory called entropy.
Entropy measures the amount of information in an attribute.
Where:
 E(S) is the information entropy of the set S ;
 n is the number of different values of the attribute in S
(entropy is computed for one chosen attribute)
 fS(j) is the frequency (proportion) of the value j in the
set S
 log 2 is the binary logarithm
 Entropy of 0 identifies a perfectly classified set.
Where:
 G(S,A) is the gain of the set S after a split over the A
attribute
 E(S) is the information entropy of the set S
 m is the number of different values of the attribute A
in S
 fS(Ai) is the frequency (proportion) of the items
possessing Ai as value for A in S
 Ai is ith
possible value of A
 is a subset of S containing all items where the
value of A is Ai
Fig-1
B. Naïve Bayesian Classifier
Integrated Intelligent Research (IIR) International Journal of Data Mining Techniques and Applications
Volume: 03 Issue: 01 June 2014, Page No. 30- 32
ISSN:2278-2419
32
Given data sets with many attributes, it would be extremely
computationally expensive to compute P(X/Ci).We need to
maximize P(X/Ci)*P(Ci) for i=1,2.P(Ci), the prior probability
of each class, can be computed based on the training tuples.
P(status=”senior”)=5/11=0.455
P(status=”junior”)=6/11=0.545
To compute P(X/Ci) for i=1to 2, We compute the following
conditional probabilities
P(dept=”system”/status=”senior”)=2/5=0.4
P(dept=”system”/status=”junior”)=2/6=0.33
P(age=”26..30”/status=”senior”)=0/5=0
P(age=”26..30”/status=”junior”)=3/6=0.5
P(salary=”46k..50k”/status=”senior”)=2/5=0.4
P(salary=”46k..50k”/status=”junior”)=2/6=0.33
Using the above probabilities, we obtain
P(X/status=”junior”) =0.33 X 0.5 X 0.33=0.054
Similarly,
P(X/status=”Senior”) =0.4 X 0 X 0.4 = 0
To find the class Ci, that maximizes ,
P(X/ Ci ) X P( Ci ), We compute
P(X/status=”senior”) X P(status=”Senior”) =
0 X 0.455 = 0
P(X/status=”Junior”) X P(status=”Junior”) =
0.054 X 0.545 = 0.0294
To find class Ci that maximizes the naïve Bayesian
classification predicts status=”junior” for tuple X
C. Comparison And Reults
For the comparison of our study, first we used a C4.5
classification algorithm derives its classes from a fixed set of
training instances. The classes created by C4.5 are inductive,
that is, given a small set of training instances, the specific
classes created by C4.5 are expected to work for all future
instances. Secondly we used a Naïve Bayesian classification
algorithm. The Naïve Bayesian classifier is that it only requires
a small amount of training data to estimate the parameters
necessary for classification. Because independent variables are
assumed, only the variances of the variables for each class
need to be determined and not the entire covariance matrix. It
handles missing values by ignoring the instance. It handles
quantitative and discrete data. Naïve Bayesian algorithm is
very fast and space efficient.
VI. CONCLUSION AND FUTURE DEVELOPMENT
In this paper, the comparative study of two classification
algorithms is compared. The Naïve Bayesian model is
tremendously appealing because of its simplicity, elegance,
and robustness. The results indicate that Naïve Bayesian
classifier is very effective and simple compared to C4.5. A
large number of modifications have been introduced, by the
statistical, data mining, machine learning, and pattern
recognition communities, in an attempt to make it more
flexible.
REFERENCES
[1] A.K.Pujari, “Data Mining Techniques”, University Press, India 2001.
[2] Jiawei Han and Micheline Kamber “Data Mining Concepts and
Techniques”
[3] S.N.Sivanandam and S.Sumathi, “Data Mining Concepts Tasks and
Techniques”, Thomson , Business Information India Pvt.Ltd.India 2006
[4] H. Wang, W. Fan, P. Yu, and J. Han.”Mining concept-drifting data
streams using ensemble Classifiers”.
[5] V. Ganti, J. Gehrke, R. Ramakrishnan, andW. Loh. “Mining data
streams under block evolution”.
[6] Friedman N, Geiger D, Goldsmith M (1997) “Bayesian network
classifiers”.
[7] Jensen F., “An Introduction to Bayesian Networks”.
[8] Murthy, “Automatic Construction of Decision Trees from Data”
[9] Website:www.cs.umd.edu/~samir/498/10Algorithms-08.pdf
[10] Website:www.hkws.org/seminar/sem433-2006-2007-no69.pdf
[11] Website:en.wikipedia.org/wiki/Data_mining
[12] http://en.wikipedia.org/wiki/ID3_algorithm
[13] Quinlan JR(1993) C4.5: Programs for machine learning.Morgan
Kaufmann Publichers, San Mateo.
Ad

Recommended

DATA MINING.doc
DATA MINING.doc
butest
 
lazy learners and other classication methods
lazy learners and other classication methods
rajshreemuthiah
 
A Survey Ondecision Tree Learning Algorithms for Knowledge Discovery
A Survey Ondecision Tree Learning Algorithms for Knowledge Discovery
IJERA Editor
 
04 Classification in Data Mining
04 Classification in Data Mining
Valerii Klymchuk
 
Literature Survey: Clustering Technique
Literature Survey: Clustering Technique
Editor IJCATR
 
IJCSI-10-6-1-288-292
IJCSI-10-6-1-288-292
HARDIK SINGH
 
15857 cse422 unsupervised-learning
15857 cse422 unsupervised-learning
Anil Yadav
 
Associative Classification: Synopsis
Associative Classification: Synopsis
Jagdeep Singh Malhi
 
report.doc
report.doc
butest
 
Data mining: Classification and prediction
Data mining: Classification and prediction
DataminingTools Inc
 
Classifiers
Classifiers
Ayurdata
 
18 ijcse-01232
18 ijcse-01232
Shivlal Mewada
 
Performance Evaluation of Different Data Mining Classification Algorithm and ...
Performance Evaluation of Different Data Mining Classification Algorithm and ...
IOSR Journals
 
Classification Techniques: A Review
Classification Techniques: A Review
IOSRjournaljce
 
IRJET- Study and Evaluation of Classification Algorithms in Data Mining
IRJET- Study and Evaluation of Classification Algorithms in Data Mining
IRJET Journal
 
Hypothesis on Different Data Mining Algorithms
Hypothesis on Different Data Mining Algorithms
IJERA Editor
 
Data Mining
Data Mining
Jay Nagar
 
Cluster Analysis
Cluster Analysis
guest0edcaf
 
Basic course for computer based methods
Basic course for computer based methods
improvemed
 
Basic course on computer-based methods
Basic course on computer-based methods
improvemed
 
Efficient classification of big data using vfdt (very fast decision tree)
Efficient classification of big data using vfdt (very fast decision tree)
eSAT Journals
 
A NEW PERSPECTIVE OF PARAMODULATION COMPLEXITY BY SOLVING 100 SLIDING BLOCK P...
A NEW PERSPECTIVE OF PARAMODULATION COMPLEXITY BY SOLVING 100 SLIDING BLOCK P...
ijaia
 
E1802023741
E1802023741
IOSR Journals
 
Analysis On Classification Techniques In Mammographic Mass Data Set
Analysis On Classification Techniques In Mammographic Mass Data Set
IJERA Editor
 
Data Mining: Concepts and Techniques — Chapter 2 —
Data Mining: Concepts and Techniques — Chapter 2 —
Salah Amean
 
Cluster analysis
Cluster analysis
Venkata Reddy Konasani
 
Research scholars evaluation based on guides view using id3
Research scholars evaluation based on guides view using id3
eSAT Journals
 
Dbm630 lecture09
Dbm630 lecture09
Tokyo Institute of Technology
 
UNIT 3: Data Warehousing and Data Mining
UNIT 3: Data Warehousing and Data Mining
Nandakumar P
 
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
Editor IJMTER
 

More Related Content

What's hot (20)

report.doc
report.doc
butest
 
Data mining: Classification and prediction
Data mining: Classification and prediction
DataminingTools Inc
 
Classifiers
Classifiers
Ayurdata
 
18 ijcse-01232
18 ijcse-01232
Shivlal Mewada
 
Performance Evaluation of Different Data Mining Classification Algorithm and ...
Performance Evaluation of Different Data Mining Classification Algorithm and ...
IOSR Journals
 
Classification Techniques: A Review
Classification Techniques: A Review
IOSRjournaljce
 
IRJET- Study and Evaluation of Classification Algorithms in Data Mining
IRJET- Study and Evaluation of Classification Algorithms in Data Mining
IRJET Journal
 
Hypothesis on Different Data Mining Algorithms
Hypothesis on Different Data Mining Algorithms
IJERA Editor
 
Data Mining
Data Mining
Jay Nagar
 
Cluster Analysis
Cluster Analysis
guest0edcaf
 
Basic course for computer based methods
Basic course for computer based methods
improvemed
 
Basic course on computer-based methods
Basic course on computer-based methods
improvemed
 
Efficient classification of big data using vfdt (very fast decision tree)
Efficient classification of big data using vfdt (very fast decision tree)
eSAT Journals
 
A NEW PERSPECTIVE OF PARAMODULATION COMPLEXITY BY SOLVING 100 SLIDING BLOCK P...
A NEW PERSPECTIVE OF PARAMODULATION COMPLEXITY BY SOLVING 100 SLIDING BLOCK P...
ijaia
 
E1802023741
E1802023741
IOSR Journals
 
Analysis On Classification Techniques In Mammographic Mass Data Set
Analysis On Classification Techniques In Mammographic Mass Data Set
IJERA Editor
 
Data Mining: Concepts and Techniques — Chapter 2 —
Data Mining: Concepts and Techniques — Chapter 2 —
Salah Amean
 
Cluster analysis
Cluster analysis
Venkata Reddy Konasani
 
Research scholars evaluation based on guides view using id3
Research scholars evaluation based on guides view using id3
eSAT Journals
 
Dbm630 lecture09
Dbm630 lecture09
Tokyo Institute of Technology
 
report.doc
report.doc
butest
 
Data mining: Classification and prediction
Data mining: Classification and prediction
DataminingTools Inc
 
Classifiers
Classifiers
Ayurdata
 
Performance Evaluation of Different Data Mining Classification Algorithm and ...
Performance Evaluation of Different Data Mining Classification Algorithm and ...
IOSR Journals
 
Classification Techniques: A Review
Classification Techniques: A Review
IOSRjournaljce
 
IRJET- Study and Evaluation of Classification Algorithms in Data Mining
IRJET- Study and Evaluation of Classification Algorithms in Data Mining
IRJET Journal
 
Hypothesis on Different Data Mining Algorithms
Hypothesis on Different Data Mining Algorithms
IJERA Editor
 
Cluster Analysis
Cluster Analysis
guest0edcaf
 
Basic course for computer based methods
Basic course for computer based methods
improvemed
 
Basic course on computer-based methods
Basic course on computer-based methods
improvemed
 
Efficient classification of big data using vfdt (very fast decision tree)
Efficient classification of big data using vfdt (very fast decision tree)
eSAT Journals
 
A NEW PERSPECTIVE OF PARAMODULATION COMPLEXITY BY SOLVING 100 SLIDING BLOCK P...
A NEW PERSPECTIVE OF PARAMODULATION COMPLEXITY BY SOLVING 100 SLIDING BLOCK P...
ijaia
 
Analysis On Classification Techniques In Mammographic Mass Data Set
Analysis On Classification Techniques In Mammographic Mass Data Set
IJERA Editor
 
Data Mining: Concepts and Techniques — Chapter 2 —
Data Mining: Concepts and Techniques — Chapter 2 —
Salah Amean
 
Research scholars evaluation based on guides view using id3
Research scholars evaluation based on guides view using id3
eSAT Journals
 

Similar to Analysis of Classification Algorithm in Data Mining (20)

UNIT 3: Data Warehousing and Data Mining
UNIT 3: Data Warehousing and Data Mining
Nandakumar P
 
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
Editor IJMTER
 
classification in data mining and data warehousing.pdf
classification in data mining and data warehousing.pdf
321106410027
 
BAS 250 Lecture 8
BAS 250 Lecture 8
Wake Tech BAS
 
08 classbasic
08 classbasic
engrasi
 
08 classbasic
08 classbasic
ritumysterious1
 
Basic Process of Classification with Example
Basic Process of Classification with Example
Sigit Priyanta
 
DM Unit-III ppt.ppt
DM Unit-III ppt.ppt
Laxmi139487
 
Unit-4 classification
Unit-4 classification
LokarchanaD
 
4_22865_IS465_2019_1__2_1_08ClassBasic.ppt
4_22865_IS465_2019_1__2_1_08ClassBasic.ppt
TSANKARARAO
 
unit classification.pptx
unit classification.pptx
ssuser908de6
 
Classification (ML).ppt
Classification (ML).ppt
rajasamal1999
 
Chapter 8. Classification Basic Concepts.ppt
Chapter 8. Classification Basic Concepts.ppt
Subrata Kumer Paul
 
Dataming-chapter-7-Classification-Basic.pptx
Dataming-chapter-7-Classification-Basic.pptx
HimanshuSharma997566
 
Unit 4 Classification of data and more info on it
Unit 4 Classification of data and more info on it
randomguy1722
 
08 classbasic
08 classbasic
JoonyoungJayGwak
 
Chapter 08 Class_Basic.ppt DataMinning
Chapter 08 Class_Basic.ppt DataMinning
nayabkainat470
 
Chapter 4 Classification
Chapter 4 Classification
Khalid Elshafie
 
Unit 3classification
Unit 3classification
Kalpna Saharan
 
Data Mining
Data Mining
IIIT ALLAHABAD
 
UNIT 3: Data Warehousing and Data Mining
UNIT 3: Data Warehousing and Data Mining
Nandakumar P
 
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
CLASSIFICATION ALGORITHM USING RANDOM CONCEPT ON A VERY LARGE DATA SET: A SURVEY
Editor IJMTER
 
classification in data mining and data warehousing.pdf
classification in data mining and data warehousing.pdf
321106410027
 
08 classbasic
08 classbasic
engrasi
 
Basic Process of Classification with Example
Basic Process of Classification with Example
Sigit Priyanta
 
DM Unit-III ppt.ppt
DM Unit-III ppt.ppt
Laxmi139487
 
Unit-4 classification
Unit-4 classification
LokarchanaD
 
4_22865_IS465_2019_1__2_1_08ClassBasic.ppt
4_22865_IS465_2019_1__2_1_08ClassBasic.ppt
TSANKARARAO
 
unit classification.pptx
unit classification.pptx
ssuser908de6
 
Classification (ML).ppt
Classification (ML).ppt
rajasamal1999
 
Chapter 8. Classification Basic Concepts.ppt
Chapter 8. Classification Basic Concepts.ppt
Subrata Kumer Paul
 
Dataming-chapter-7-Classification-Basic.pptx
Dataming-chapter-7-Classification-Basic.pptx
HimanshuSharma997566
 
Unit 4 Classification of data and more info on it
Unit 4 Classification of data and more info on it
randomguy1722
 
Chapter 08 Class_Basic.ppt DataMinning
Chapter 08 Class_Basic.ppt DataMinning
nayabkainat470
 
Chapter 4 Classification
Chapter 4 Classification
Khalid Elshafie
 
Ad

More from ijdmtaiir (20)

A review on data mining techniques for Digital Mammographic Analysis
A review on data mining techniques for Digital Mammographic Analysis
ijdmtaiir
 
Comparison on PCA ICA and LDA in Face Recognition
Comparison on PCA ICA and LDA in Face Recognition
ijdmtaiir
 
A Novel Approach to Mathematical Concepts in Data Mining
A Novel Approach to Mathematical Concepts in Data Mining
ijdmtaiir
 
Performance Analysis of Selected Classifiers in User Profiling
Performance Analysis of Selected Classifiers in User Profiling
ijdmtaiir
 
Analysis of Sales and Distribution of an IT Industry Using Data Mining Techni...
Analysis of Sales and Distribution of an IT Industry Using Data Mining Techni...
ijdmtaiir
 
Analysis of Influences of memory on Cognitive load Using Neural Network Back ...
Analysis of Influences of memory on Cognitive load Using Neural Network Back ...
ijdmtaiir
 
An Analysis of Data Mining Applications for Fraud Detection in Securities Market
An Analysis of Data Mining Applications for Fraud Detection in Securities Market
ijdmtaiir
 
An Ill-identified Classification to Predict Cardiac Disease Using Data Cluste...
An Ill-identified Classification to Predict Cardiac Disease Using Data Cluste...
ijdmtaiir
 
Scaling Down Dimensions and Feature Extraction in Document Repository Classif...
Scaling Down Dimensions and Feature Extraction in Document Repository Classif...
ijdmtaiir
 
Music Promotes Gross National Happiness Using Neutrosophic fuzzyCognitive Map...
Music Promotes Gross National Happiness Using Neutrosophic fuzzyCognitive Map...
ijdmtaiir
 
A Study on Youth Violence and Aggression using DEMATEL with FCM Methods
A Study on Youth Violence and Aggression using DEMATEL with FCM Methods
ijdmtaiir
 
Certain Investigation on Dynamic Clustering in Dynamic Datamining
Certain Investigation on Dynamic Clustering in Dynamic Datamining
ijdmtaiir
 
Analyzing the Role of a Family in Constructing Gender Roles Using Combined Ov...
Analyzing the Role of a Family in Constructing Gender Roles Using Combined Ov...
ijdmtaiir
 
An Interval Based Fuzzy Multiple Expert System to Analyze the Impacts of Clim...
An Interval Based Fuzzy Multiple Expert System to Analyze the Impacts of Clim...
ijdmtaiir
 
An Approach for the Detection of Vascular Abnormalities in Diabetic Retinopathy
An Approach for the Detection of Vascular Abnormalities in Diabetic Retinopathy
ijdmtaiir
 
Improve the Performance of Clustering Using Combination of Multiple Clusterin...
Improve the Performance of Clustering Using Combination of Multiple Clusterin...
ijdmtaiir
 
The Study of Symptoms of Tuberculosis Using Induced Fuzzy Coginitive Maps (IF...
The Study of Symptoms of Tuberculosis Using Induced Fuzzy Coginitive Maps (IF...
ijdmtaiir
 
A Study on Finding the Key Motive of Happiness Using Fuzzy Cognitive Maps (FCMs)
A Study on Finding the Key Motive of Happiness Using Fuzzy Cognitive Maps (FCMs)
ijdmtaiir
 
Study of sustainable development using Fuzzy Cognitive Relational Maps (FCM)
Study of sustainable development using Fuzzy Cognitive Relational Maps (FCM)
ijdmtaiir
 
A Study of Personality Influence in Building Work Life Balance Using Fuzzy Re...
A Study of Personality Influence in Building Work Life Balance Using Fuzzy Re...
ijdmtaiir
 
A review on data mining techniques for Digital Mammographic Analysis
A review on data mining techniques for Digital Mammographic Analysis
ijdmtaiir
 
Comparison on PCA ICA and LDA in Face Recognition
Comparison on PCA ICA and LDA in Face Recognition
ijdmtaiir
 
A Novel Approach to Mathematical Concepts in Data Mining
A Novel Approach to Mathematical Concepts in Data Mining
ijdmtaiir
 
Performance Analysis of Selected Classifiers in User Profiling
Performance Analysis of Selected Classifiers in User Profiling
ijdmtaiir
 
Analysis of Sales and Distribution of an IT Industry Using Data Mining Techni...
Analysis of Sales and Distribution of an IT Industry Using Data Mining Techni...
ijdmtaiir
 
Analysis of Influences of memory on Cognitive load Using Neural Network Back ...
Analysis of Influences of memory on Cognitive load Using Neural Network Back ...
ijdmtaiir
 
An Analysis of Data Mining Applications for Fraud Detection in Securities Market
An Analysis of Data Mining Applications for Fraud Detection in Securities Market
ijdmtaiir
 
An Ill-identified Classification to Predict Cardiac Disease Using Data Cluste...
An Ill-identified Classification to Predict Cardiac Disease Using Data Cluste...
ijdmtaiir
 
Scaling Down Dimensions and Feature Extraction in Document Repository Classif...
Scaling Down Dimensions and Feature Extraction in Document Repository Classif...
ijdmtaiir
 
Music Promotes Gross National Happiness Using Neutrosophic fuzzyCognitive Map...
Music Promotes Gross National Happiness Using Neutrosophic fuzzyCognitive Map...
ijdmtaiir
 
A Study on Youth Violence and Aggression using DEMATEL with FCM Methods
A Study on Youth Violence and Aggression using DEMATEL with FCM Methods
ijdmtaiir
 
Certain Investigation on Dynamic Clustering in Dynamic Datamining
Certain Investigation on Dynamic Clustering in Dynamic Datamining
ijdmtaiir
 
Analyzing the Role of a Family in Constructing Gender Roles Using Combined Ov...
Analyzing the Role of a Family in Constructing Gender Roles Using Combined Ov...
ijdmtaiir
 
An Interval Based Fuzzy Multiple Expert System to Analyze the Impacts of Clim...
An Interval Based Fuzzy Multiple Expert System to Analyze the Impacts of Clim...
ijdmtaiir
 
An Approach for the Detection of Vascular Abnormalities in Diabetic Retinopathy
An Approach for the Detection of Vascular Abnormalities in Diabetic Retinopathy
ijdmtaiir
 
Improve the Performance of Clustering Using Combination of Multiple Clusterin...
Improve the Performance of Clustering Using Combination of Multiple Clusterin...
ijdmtaiir
 
The Study of Symptoms of Tuberculosis Using Induced Fuzzy Coginitive Maps (IF...
The Study of Symptoms of Tuberculosis Using Induced Fuzzy Coginitive Maps (IF...
ijdmtaiir
 
A Study on Finding the Key Motive of Happiness Using Fuzzy Cognitive Maps (FCMs)
A Study on Finding the Key Motive of Happiness Using Fuzzy Cognitive Maps (FCMs)
ijdmtaiir
 
Study of sustainable development using Fuzzy Cognitive Relational Maps (FCM)
Study of sustainable development using Fuzzy Cognitive Relational Maps (FCM)
ijdmtaiir
 
A Study of Personality Influence in Building Work Life Balance Using Fuzzy Re...
A Study of Personality Influence in Building Work Life Balance Using Fuzzy Re...
ijdmtaiir
 
Ad

Recently uploaded (20)

machine learning is a advance technology
machine learning is a advance technology
ynancy893
 
Tally.ERP 9 at a Glance.book - Tally Solutions .pdf
Tally.ERP 9 at a Glance.book - Tally Solutions .pdf
Shabista Imam
 
special_edition_using_visual_foxpro_6.pdf
special_edition_using_visual_foxpro_6.pdf
Shabista Imam
 
Deep Learning for Natural Language Processing_FDP on 16 June 2025 MITS.pptx
Deep Learning for Natural Language Processing_FDP on 16 June 2025 MITS.pptx
resming1
 
Learning – Types of Machine Learning – Supervised Learning – Unsupervised UNI...
Learning – Types of Machine Learning – Supervised Learning – Unsupervised UNI...
23Q95A6706
 
International Journal of Advanced Information Technology (IJAIT)
International Journal of Advanced Information Technology (IJAIT)
ijait
 
Modern multi-proposer consensus implementations
Modern multi-proposer consensus implementations
François Garillot
 
Industry 4.o the fourth revolutionWeek-2.pptx
Industry 4.o the fourth revolutionWeek-2.pptx
KNaveenKumarECE
 
Rapid Prototyping for XR: Lecture 6 - AI for Prototyping and Research Directi...
Rapid Prototyping for XR: Lecture 6 - AI for Prototyping and Research Directi...
Mark Billinghurst
 
Generative AI & Scientific Research : Catalyst for Innovation, Ethics & Impact
Generative AI & Scientific Research : Catalyst for Innovation, Ethics & Impact
AlqualsaDIResearchGr
 
Rapid Prototyping for XR: Lecture 4 - High Level Prototyping.
Rapid Prototyping for XR: Lecture 4 - High Level Prototyping.
Mark Billinghurst
 
DESIGN OF REINFORCED CONCRETE ELEMENTS S
DESIGN OF REINFORCED CONCRETE ELEMENTS S
prabhusp8
 
Complete University of Calculus :: 2nd edition
Complete University of Calculus :: 2nd edition
Shabista Imam
 
Abraham Silberschatz-Operating System Concepts (9th,2012.12).pdf
Abraham Silberschatz-Operating System Concepts (9th,2012.12).pdf
Shabista Imam
 
FUNDAMENTALS OF COMPUTER ORGANIZATION AND ARCHITECTURE
FUNDAMENTALS OF COMPUTER ORGANIZATION AND ARCHITECTURE
Shabista Imam
 
20CE404-Soil Mechanics - Slide Share PPT
20CE404-Soil Mechanics - Slide Share PPT
saravananr808639
 
Introduction to sensing and Week-1.pptx
Introduction to sensing and Week-1.pptx
KNaveenKumarECE
 
LECTURE 7 COMPUTATIONS OF LEVELING DATA APRIL 2025.pptx
LECTURE 7 COMPUTATIONS OF LEVELING DATA APRIL 2025.pptx
rr22001247
 
retina_biometrics ruet rajshahi bangdesh.pptx
retina_biometrics ruet rajshahi bangdesh.pptx
MdRakibulIslam697135
 
Deep Learning for Image Processing on 16 June 2025 MITS.pptx
Deep Learning for Image Processing on 16 June 2025 MITS.pptx
resming1
 
machine learning is a advance technology
machine learning is a advance technology
ynancy893
 
Tally.ERP 9 at a Glance.book - Tally Solutions .pdf
Tally.ERP 9 at a Glance.book - Tally Solutions .pdf
Shabista Imam
 
special_edition_using_visual_foxpro_6.pdf
special_edition_using_visual_foxpro_6.pdf
Shabista Imam
 
Deep Learning for Natural Language Processing_FDP on 16 June 2025 MITS.pptx
Deep Learning for Natural Language Processing_FDP on 16 June 2025 MITS.pptx
resming1
 
Learning – Types of Machine Learning – Supervised Learning – Unsupervised UNI...
Learning – Types of Machine Learning – Supervised Learning – Unsupervised UNI...
23Q95A6706
 
International Journal of Advanced Information Technology (IJAIT)
International Journal of Advanced Information Technology (IJAIT)
ijait
 
Modern multi-proposer consensus implementations
Modern multi-proposer consensus implementations
François Garillot
 
Industry 4.o the fourth revolutionWeek-2.pptx
Industry 4.o the fourth revolutionWeek-2.pptx
KNaveenKumarECE
 
Rapid Prototyping for XR: Lecture 6 - AI for Prototyping and Research Directi...
Rapid Prototyping for XR: Lecture 6 - AI for Prototyping and Research Directi...
Mark Billinghurst
 
Generative AI & Scientific Research : Catalyst for Innovation, Ethics & Impact
Generative AI & Scientific Research : Catalyst for Innovation, Ethics & Impact
AlqualsaDIResearchGr
 
Rapid Prototyping for XR: Lecture 4 - High Level Prototyping.
Rapid Prototyping for XR: Lecture 4 - High Level Prototyping.
Mark Billinghurst
 
DESIGN OF REINFORCED CONCRETE ELEMENTS S
DESIGN OF REINFORCED CONCRETE ELEMENTS S
prabhusp8
 
Complete University of Calculus :: 2nd edition
Complete University of Calculus :: 2nd edition
Shabista Imam
 
Abraham Silberschatz-Operating System Concepts (9th,2012.12).pdf
Abraham Silberschatz-Operating System Concepts (9th,2012.12).pdf
Shabista Imam
 
FUNDAMENTALS OF COMPUTER ORGANIZATION AND ARCHITECTURE
FUNDAMENTALS OF COMPUTER ORGANIZATION AND ARCHITECTURE
Shabista Imam
 
20CE404-Soil Mechanics - Slide Share PPT
20CE404-Soil Mechanics - Slide Share PPT
saravananr808639
 
Introduction to sensing and Week-1.pptx
Introduction to sensing and Week-1.pptx
KNaveenKumarECE
 
LECTURE 7 COMPUTATIONS OF LEVELING DATA APRIL 2025.pptx
LECTURE 7 COMPUTATIONS OF LEVELING DATA APRIL 2025.pptx
rr22001247
 
retina_biometrics ruet rajshahi bangdesh.pptx
retina_biometrics ruet rajshahi bangdesh.pptx
MdRakibulIslam697135
 
Deep Learning for Image Processing on 16 June 2025 MITS.pptx
Deep Learning for Image Processing on 16 June 2025 MITS.pptx
resming1
 

Analysis of Classification Algorithm in Data Mining

  • 1. Integrated Intelligent Research (IIR) International Journal of Data Mining Techniques and Applications Volume: 03 Issue: 01 June 2014, Page No. 30- 32 ISSN:2278-2419 30 Analysis of Classification Algorithm in Data Mining R. Aruna devi1 ,K. Nirmala2 1 Research Scholar, Manonmaniam Sundaranar University, Tirunelveli, Tamil Nadu, India 2 Associate Professor, Department of Computer Science, Quaid-E- Millath Government College for Women (A), Chennai, Tamil Nadu, India [email protected], [email protected] Abstract-Data Mining is the extraction of hidden predictive information from large database. Classification is the process of finding a model that describes and distinguishes data classes or concept. This paper performs the study of prediction of class label using C4.5 and Naïve Bayesian algorithm.C4.5 generates classifiers expressed as decision trees from a fixed set of examples. The resulting tree is used to classify future samples .The leaf nodes of the decision tree contain the class name whereas a non-leaf node is a decision node. The decision node is an attribute test with each branch (to another decision tree) being a possible value of the attribute. C4.5 uses information gain to help it decide which attribute goes into a decision node. A Naïve Bayesian classifier is a simple probabilistic classifier based on applying Baye’s theorem with strong (naive) independence assumptions. Naive Bayesian classifier assumes that the effect of an attribute value on a given class is independent of the values of the other attribute. This assumption is called class conditional independence. The results indicate that Predicting of class label using Naïve Bayesian classifier is very effective and simple compared to C4.5 classifier. Keywords: Data Mining, Classification, Naïve Bayesian Classifier, Entropy I. INTRODUCTION Data mining is the extraction of implicit, previously unknown, and potentially useful information from large databases. It uses machine learning, statistical and visualization techniques to discover and present knowledge in a form, which is easily comprehensible to humans. Data mining functionalities are used to specify the kind of patterns to be found in data mining tasks. Data mining task can be classified into two categories: Descriptive and Predictive. Descriptive mining tasks characterize the general properties of the data in the database[1] . Predictive mining tasks perform inference on the current data in order to make prediction. Classification is the process of finding a model that describes and distinguishes data classes / concepts. The goal of data mining is to extract knowledge from a data set in a human-understandable structure and involves database and data management, data preprocessing, model and inference considerations, complexity considerations, post- processing of found structure, visualization and online updating. The actual data-mining task is the automatic or semi- automatic analysis of large quantities of data to extract previously unknown interesting patterns such as groups of data records (cluster analysis), unusual records (anomaly detection) and dependencies (association rule mining). A primary reason for using data mining is to assist in the analysis of collections of observations of behavior. Data mining involves six common classes of tasks.(1)Anomaly detection – The identification of unusual data records, that might be interesting or data errors and require further investigation.(2)Association rule learning- Searches for relationships between variables.(3) Clustering – is the task of discovering groups and structures in the data that are in some way or another "similar", without using known structures in the data.(4)Classification – is the task of generalizing known structure to apply to new data.(5)Regression – Attempts to find a function which models the data with the least error.(6)Summarization – providing a more compact representation of the data set, including visualization and report generation. II. ALGORITHM C4.5 algorithm is introduced by Quinlan for inducing Classification Models, also called Decision Trees[13] . We are given a set of records. Each record has the same structure, consisting of a number of attribute/value pairs. One of these attributes represents the category of the record. The problem is to determine a decision tree that on the basis of answers to questions about the non-category attributes predicts correctly the value of the category attribute. Usually the category attribute takes only the values {true, false}, or {success, failure}, or something equivalent. The C4.5 algorithm can be summarized as follows: Step 1: Given a set of S cases, C4.5 first grows an initial tree using the concept of information entropy. The training data is a set S=S1, S2, of already classified samples. Each sample Si=X1, X2... is a vector where X1, X2, represent attributes or features of the sample. The training data is augmented with a vector C = c1, c2, where c1, c2, represent the class to which each sample belongs. Step 2: At each node of the tree, C4.5 chooses one attribute of the data that most effectively splits its set of samples into subsets enriched in one class or the other. Its criterion is the normalized information gain that results from choosing an attribute for splitting the data. The attribute with the highest normalized information gain is chosen to make the decision. Step 3: Create a decision tree based on the best node Step 4: Apply the same procedure recursively III. NAÏVE BAYESIAN
  • 2. Integrated Intelligent Research (IIR) International Journal of Data Mining Techniques and Applications Volume: 03 Issue: 01 June 2014, Page No. 30- 32 ISSN:2278-2419 31 A Naive Bayesian classifier is a simple probabilistic classifier based on applying Baye’s theorem with strong (naive) independence assumptions. A more descriptive term for the underlying probability model would be "independent feature model"[2] . In simple terms, a Naive Baye’s classifier assumes that the presence (or absence) of a particular feature of a class is unrelated to the presence (or absence) of any other feature, given the class variable. Depending on the precise nature of the probability model, naive Baye’s classifiers can be trained very efficiently in a supervised learning setting. In many practical applications, parameter estimation for naive Baye’s models uses the method of maximum likelihood; in other words, one can work with the naive Baye’s model without believing in Bayesian probability or using any Bayesian methods. In spite of their naive design and apparently over-simplified assumptions, naive Baye’s classifiers have worked quite well in many complex real-world situations. Given data sets with many attributes, it would be extremely computationally expensive to compute P(X/Ci). In order to reduce computation in evaluating P(X/Ci), the naïve assumption of class conditional independence is made. This presumes that the values of the attributes are conditionally independent of one another, given the class label of the tuple (i.e., that there are no dependence relationships among the attributes). Thus,P(X1/Ci)× P(X2/Ci)× … ×P(Xn/Ci). easily estimate the probabilities P(X1/Ci) ,P(X2/Ci…P(Xn/Ci) from the training tuples .Recall that here Xk refers to the value of attribute Ak for tuple X. IV. DATASET DESCRIPTION The main objective of this paper is to use classification algorithm to predict the class label using C4.5 classifier and Bayesian classifier on the large dataset. The model used in this paper predicts the status of the tuple having the values department has “system” who are 26..30 years, have income 46..50K[2] . Table 1: Department V. EXPERIMENTAL RESULTS AND DISCUSSIONS In this paper we wish to study of C4.5 and Naïve Bayesian classification, given the training data as in Table 1. The data tuple are described by the attributes department, status, age and salary. The class label attribute status, has two distinct values namely { Senior,Junior }.Let C1 corresponds to the class Status=”Junior” and C2 correspond to Status=”Senior”. The tuple we wish to classify is, X=(dept=”system”,age=”26..30”,salary=”46..50k”) A. Algorithm C4.5 uses a statistical property, called information gain. Gain measures how well a given attribute separates training examples into targeted classes. The one with the highest information is selected as test attribute. In order to define gain, we first borrow an idea from information theory called entropy. Entropy measures the amount of information in an attribute. Where:  E(S) is the information entropy of the set S ;  n is the number of different values of the attribute in S (entropy is computed for one chosen attribute)  fS(j) is the frequency (proportion) of the value j in the set S  log 2 is the binary logarithm  Entropy of 0 identifies a perfectly classified set. Where:  G(S,A) is the gain of the set S after a split over the A attribute  E(S) is the information entropy of the set S  m is the number of different values of the attribute A in S  fS(Ai) is the frequency (proportion) of the items possessing Ai as value for A in S  Ai is ith possible value of A  is a subset of S containing all items where the value of A is Ai Fig-1 B. Naïve Bayesian Classifier
  • 3. Integrated Intelligent Research (IIR) International Journal of Data Mining Techniques and Applications Volume: 03 Issue: 01 June 2014, Page No. 30- 32 ISSN:2278-2419 32 Given data sets with many attributes, it would be extremely computationally expensive to compute P(X/Ci).We need to maximize P(X/Ci)*P(Ci) for i=1,2.P(Ci), the prior probability of each class, can be computed based on the training tuples. P(status=”senior”)=5/11=0.455 P(status=”junior”)=6/11=0.545 To compute P(X/Ci) for i=1to 2, We compute the following conditional probabilities P(dept=”system”/status=”senior”)=2/5=0.4 P(dept=”system”/status=”junior”)=2/6=0.33 P(age=”26..30”/status=”senior”)=0/5=0 P(age=”26..30”/status=”junior”)=3/6=0.5 P(salary=”46k..50k”/status=”senior”)=2/5=0.4 P(salary=”46k..50k”/status=”junior”)=2/6=0.33 Using the above probabilities, we obtain P(X/status=”junior”) =0.33 X 0.5 X 0.33=0.054 Similarly, P(X/status=”Senior”) =0.4 X 0 X 0.4 = 0 To find the class Ci, that maximizes , P(X/ Ci ) X P( Ci ), We compute P(X/status=”senior”) X P(status=”Senior”) = 0 X 0.455 = 0 P(X/status=”Junior”) X P(status=”Junior”) = 0.054 X 0.545 = 0.0294 To find class Ci that maximizes the naïve Bayesian classification predicts status=”junior” for tuple X C. Comparison And Reults For the comparison of our study, first we used a C4.5 classification algorithm derives its classes from a fixed set of training instances. The classes created by C4.5 are inductive, that is, given a small set of training instances, the specific classes created by C4.5 are expected to work for all future instances. Secondly we used a Naïve Bayesian classification algorithm. The Naïve Bayesian classifier is that it only requires a small amount of training data to estimate the parameters necessary for classification. Because independent variables are assumed, only the variances of the variables for each class need to be determined and not the entire covariance matrix. It handles missing values by ignoring the instance. It handles quantitative and discrete data. Naïve Bayesian algorithm is very fast and space efficient. VI. CONCLUSION AND FUTURE DEVELOPMENT In this paper, the comparative study of two classification algorithms is compared. The Naïve Bayesian model is tremendously appealing because of its simplicity, elegance, and robustness. The results indicate that Naïve Bayesian classifier is very effective and simple compared to C4.5. A large number of modifications have been introduced, by the statistical, data mining, machine learning, and pattern recognition communities, in an attempt to make it more flexible. REFERENCES [1] A.K.Pujari, “Data Mining Techniques”, University Press, India 2001. [2] Jiawei Han and Micheline Kamber “Data Mining Concepts and Techniques” [3] S.N.Sivanandam and S.Sumathi, “Data Mining Concepts Tasks and Techniques”, Thomson , Business Information India Pvt.Ltd.India 2006 [4] H. Wang, W. Fan, P. Yu, and J. Han.”Mining concept-drifting data streams using ensemble Classifiers”. [5] V. Ganti, J. Gehrke, R. Ramakrishnan, andW. Loh. “Mining data streams under block evolution”. [6] Friedman N, Geiger D, Goldsmith M (1997) “Bayesian network classifiers”. [7] Jensen F., “An Introduction to Bayesian Networks”. [8] Murthy, “Automatic Construction of Decision Trees from Data” [9] Website:www.cs.umd.edu/~samir/498/10Algorithms-08.pdf [10] Website:www.hkws.org/seminar/sem433-2006-2007-no69.pdf [11] Website:en.wikipedia.org/wiki/Data_mining [12] http://en.wikipedia.org/wiki/ID3_algorithm [13] Quinlan JR(1993) C4.5: Programs for machine learning.Morgan Kaufmann Publichers, San Mateo.