SlideShare a Scribd company logo
1 of 4
Download to read offline
IOSR Journal of Computer Engineering (IOSR-JCE)
e-ISSN: 2278-0661, p- ISSN: 2278-8727Volume 11, Issue 5 (May. - Jun. 2013), PP 70-73
www.iosrjournals.org
www.iosrjournals.org 70 | Page
Accuracy, Sensitivity and Specificity Measurement of Various
Classification Techniques on Healthcare Data
Niyati Gupta1
, Arushi Rawal1
, Dr. V.L. Narasimhan2
, Savita Shiwani1
1
(Dept. of Computer Science and Engineering, Gyan Vihar University, Jaipur, Rajasthan, India)
2
(Dept. of Computer Science, East Carolina University, Greenville, USA)
Abstract: Healthcare industry is a type of industry, where the data is very large and sensitive. The data is
required to be handled very carefully without any mismanagement. There are various data mining techniques
that have been used in healthcare industry but the research that has to be done now is on the performance of the
various classification techniques. So that amongst the all, the best on can be chosen. In this paper, we aim to
consider the accuracy percentage, sensitivity percentage and specificity percentage to provide a result.
Keywords: accuracy, classification, data mining, healthcare industry, sensitivity, specificity.
I. Introduction
There has been a lot of work that has been already done using data mining in healthcare industry and
due to enormous success, the people are getting more and more interested in this field .The dataset chosen by us
is the diabetes data set. We chose it because it is a common disease throughout the world. The Pima Indians data
set is widely used in the diabetic studies because Pima Indians generally show the symptoms of Type-2 diabetes.
The aim of this study is to find the accuracy, sensitivity and specificity percentage of various
classification methods. We here have tried to compare the results of various classification methods in Weka with
the classification methods implemented on few other tools like Rapidminer and matlab on the basis of few ROC
parameters.
II. Literature Survey
There are various numbers of researchers that have been reported working on diagnosis of common
diseases. In a study, the diagnosis of Pima Indian diabetes by using the evolving fuzzy approach, has been
addressed by Lekas et al.
Sapna and Tamilaras [1], proposed a research that was based on the concept that diabetic mellitus is a
cause for nerve disorder .In another study by Jeatarbul and Wong [2], the classification performance is obtained
by various types of neural networks i.e. Back Propagation NN, Radial Basis Function NN, General Regression
NN, Probabilistic NN and Complementary NN.
A new SSVM for the problems of classification was proposed by Santi Waulan et al [3]. Radha and
Rajagopalan, to diagnosis of diabetes introduced an application of fuzzy logic.[4].
In a study, Huang et al used data mining to detect key determinants of Type-2 diabetes.
III. Description Of The Data Set
The dataset used in our study is of Pima Indians who have symptoms of diabetes. The Pima Indians data set
is publically available at UCI [5]. There are 768 observations and 9 attributes with no missing values, but there
are few impossible values. All the patients in this data set are females, living near Arizona.
The attributes are shown in the table below:
Accuracy, sensitivity and specificity measurement of various classification techniques on healthcare
www.iosrjournals.org 71 | Page
Table 1: Attributes
The characteristics of the dataset used are shown below in a summarized format.
Table 2: Characteristics of data set
IV. Methodology
Several algorithms with running parameters are explained below:
Multilayer Perceptron (MLP)-It is a neural network classification algorithm and is very commonly used. It is
experimented in this study with the parameters: learning rate =0.3/0.15; momentum = 0.2; random speed =0;
validation threshold= 20; number of epochs =500[6].
BayesNet- This algorithm considers two assumptions: nominal values and no missing values. For estimating the
conditional probability tables of network, there are two different parts. Simple estimator and k2 search algorithm
are used to run the bayesnet [7].
J48graft -J48 or J48graft is the weka version of C4.5 classifier. Selected parameters are: confidence
factor=0.25; min num obj =2; subtree raising=true; unpruned=false [8].
JRip -In this algorithm to produce error reduction, repeated incremental pruning is done. The implementation of
JRip in weka is done with parameters: folds= 10; min no. =2; optimizations=2; seed=1; use pruning =true [9].
The classification methods used on various other tools:
PNN – stands for “Probabilistic Neural Network”. As the word Neural is so the working is like feed forward
neural network. This algorithm is normally used for the classification. It consists of 4 layers
1. Input Layer
2. Hidden Layer
3. Output Layer
LVQ - Learning Vector Quantization discovers the network architecture that has been used for clustering.
FFN - Feed Froward network is in one direction flow of data directly from input nodes to hidden nodes to
output nodes.
CFN - Cascade forward networks works like FFN but there is a dependency between the nodes.
DTDN - Distributed Time delay Networks is a time sensitive FFN kind off network where there is a delay
associated with every node thus there is a finite dynamic response to time series input.
TDN - Time delay network has a tapped delay line at the input weight in which the dynamics appear only at
the input layer of a static multilayer feed forward network.[1]
GINI - Two separate parts are created in the form of binary divisions, each output is separated according to
the calculation –
 Ginileft
 Giniright
AIS - , artificial immune systems (AIS) are a class of computationally intelligent systems inspired by the
principles and processes of the vertebrate immune system[wiki].
V. Roc Parameters
ROC parameters are used to compare the results of various classifiers. For accuracy percentage,
sensitivity percentage and specificity percentage, TP, TN, FP AND FN expressions are used.
The abbreviations of the above mentioned ROC parameters and their explanation is shown in the table
given below:
Accuracy, sensitivity and specificity measurement of various classification techniques on healthcare
www.iosrjournals.org 72 | Page
Table: 3 the ROC PARAMETERS
Various formulas based on ROC parameters are given below:
ACCURACY = (TP+TN)/ (TP+TN+FP+FN)
SENSITIVITY= (TP)/ (TP+FN)
SPECIFICITY= (TN)/ (TN+FP)
VI. Results Of Study
To compare the various classification methods namely Multilayer Perception(MLP) , Neural Network,
Bayes Network Classifier , J48graft (C4.5), JRip, Fuzzy Lattice Reasoning (FLR) we worked on weka and the
other algorithms like PNN , LVQ,FFN ,CFN, DTDN,TDN are implemented on MATLAB , while GINI
algorithm is implemented on Rapidminer. The accuracy, sensitivity and specificity is determined for each
algorithms based on the values of various ROC parameters and the formulas. The results of the classifiers in
Weka are shown in table 4, while the results of other algorithms are shown in table 5.
Accuracy% Sensitivity% Specificity%
MLP 79.19 % 61.1% 82.6%
BAYESNET 78.98% 60.8 % 81.6%
J48GRAFT 81.33% 59.7 % 81.4%
JRIP 80.91% 55.5 % 83.8 %
Table: 4 Accuracy, sensitivity and specificity percentages using Weka classifiers.
accuracy sensitivity specificity
PNN 72.0% 63.33% 76.9%
LVQ 73.6% 54.4% 84.4 %
FFN 68.8% 54.4% 76.9%
CFN 68.0% 62.2% 71.3%
DTDN 76.0% 53.3% 88.8%
TDN 66.0% 41.1% 81.3%
GINI 65.0% 44.7% 77.8%
AIS 68.8% 52.2% 78.1%
Table: 5 Accuracy, sensitivity and specificity percentages using classifiers on various other tools.
Accuracy, sensitivity and specificity measurement of various classification techniques on healthcare
www.iosrjournals.org 73 | Page
VII. Result Analysis And Conclusion
As we all are aware that clustering is done to find the clusters in a way that the data that fall under same
clusters is similar and dissimilar data lie in other clusters. We have done clustering here to divide the patients in
clusters based on low risk and high risk of being sick.
Figure 1
Figure-2
In this study, we have taken various classification methods and compared the results of various
algorithms on Weka on the basis of accuracy, sensitivity and specificity with the results of various other
algorithms implemented on Matlab and Rapidminer. According to the figure 1 and table 4, we can determine
that J48 has the highest accuracy percentage of 81.33 %, while if we consider the other parameters then PNN
has the highest sensitivity of 63.33% and DTDN has the highest specificity of 88.8%.
References
[1] M. S. Sapna and D. A. Tamilarasi, “Fuzzy Relational Equation in Preventing Neuropathy Diabetic”, Internati- onal Journal of Recent
Trends in Engineering, Vol. 2, No. 4, 2009, p. 126.
[2] Jeatrakul and K. W. Wong, “Comparing the Perform-ance of Different Neural Networks for Binary Classifica-tion Problems,” The
8th International Symposium on Na- tural Language Processing, Bangkok, 20-22 October 2009, pp. 111-115.
doi:10.1109/SNLP.2009.5340935
[3] S. W. Purnami, A. Embong, J. M. Zain and S. P. Rahayu, “A New Smooth Support Vector Machine and Its Appli- cations in
Diabetes Disease Diagnosis,” Journal of Com-puter Science, Vol. 5, No. 12, pp. 1006-1011.
[4] R. Radha and S. P. Rajagopalan, “Fuzzy Logic Approach for Diagnosis of Diabetes,” Information Technology Jour- nal, Vol. 6, No.
1, pp. 96-102. doi:10.3923/itj.2007.96.102
[5] UCI Machine Learning Repository. http://www.ics.uci.edu/mlearn/MLRepository.html
[6] P. Werbos, “Beyond Regression: New Tools for Predi- ction and Analysis in the Behavioral Sciences,” Ph.D. Thesis, Harvard
University, Cambridge, 1974
[7] G. H. John and P. Langley, “Estimating Continuous Dis-tributions in Bayesian Classifiers,” Proceedings of the 11th Conference on
Uncertainty in Artificial Intelligence, San Francisco, 1995, pp. 338-345.
[8] J. Quinlan, “C4.5: Programs for Machine Learning,” Mo- rgan Kaufmann, San Mateo, 1993
[9] I.H. Witten and E. Frank, “Data Mining: Practical Ma- chine Learning Tools and Techniques,” 2nd Edition, Mor- gan Kaufmann, San
Francisco, 2005.

More Related Content

What's hot

AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSISAN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSISijcsit
 
PERFORMANCE ASSESSMENT OF ANFIS APPLIED TO FAULT DIAGNOSIS OF POWER TRANSFORMER
PERFORMANCE ASSESSMENT OF ANFIS APPLIED TO FAULT DIAGNOSIS OF POWER TRANSFORMER PERFORMANCE ASSESSMENT OF ANFIS APPLIED TO FAULT DIAGNOSIS OF POWER TRANSFORMER
PERFORMANCE ASSESSMENT OF ANFIS APPLIED TO FAULT DIAGNOSIS OF POWER TRANSFORMER ecij
 
Analysis On Classification Techniques In Mammographic Mass Data Set
Analysis On Classification Techniques In Mammographic Mass Data SetAnalysis On Classification Techniques In Mammographic Mass Data Set
Analysis On Classification Techniques In Mammographic Mass Data SetIJERA Editor
 
A review on early hospital mortality prediction using vital signals
A review on early hospital mortality prediction using vital signalsA review on early hospital mortality prediction using vital signals
A review on early hospital mortality prediction using vital signalsReza Sadeghi
 
A Detail Study of Wavelet Families for EMG Pattern Recognition
A Detail Study of Wavelet Families for EMG Pattern Recognition A Detail Study of Wavelet Families for EMG Pattern Recognition
A Detail Study of Wavelet Families for EMG Pattern Recognition IJECEIAES
 
ON FEATURE SELECTION ALGORITHMS AND FEATURE SELECTION STABILITY MEASURES: A C...
ON FEATURE SELECTION ALGORITHMS AND FEATURE SELECTION STABILITY MEASURES: A C...ON FEATURE SELECTION ALGORITHMS AND FEATURE SELECTION STABILITY MEASURES: A C...
ON FEATURE SELECTION ALGORITHMS AND FEATURE SELECTION STABILITY MEASURES: A C...ijcsit
 
ANALYSIS OF MACHINE LEARNING ALGORITHMS WITH FEATURE SELECTION FOR INTRUSION ...
ANALYSIS OF MACHINE LEARNING ALGORITHMS WITH FEATURE SELECTION FOR INTRUSION ...ANALYSIS OF MACHINE LEARNING ALGORITHMS WITH FEATURE SELECTION FOR INTRUSION ...
ANALYSIS OF MACHINE LEARNING ALGORITHMS WITH FEATURE SELECTION FOR INTRUSION ...IJNSA Journal
 
Application of Hybrid Genetic Algorithm Using Artificial Neural Network in Da...
Application of Hybrid Genetic Algorithm Using Artificial Neural Network in Da...Application of Hybrid Genetic Algorithm Using Artificial Neural Network in Da...
Application of Hybrid Genetic Algorithm Using Artificial Neural Network in Da...IOSRjournaljce
 
IRJET - Alzheimer’s Detection Model Using Machine Learning
IRJET - Alzheimer’s Detection Model Using Machine LearningIRJET - Alzheimer’s Detection Model Using Machine Learning
IRJET - Alzheimer’s Detection Model Using Machine LearningIRJET Journal
 
An Influence of Measurement Scale of Predictor Variable on Logistic Regressio...
An Influence of Measurement Scale of Predictor Variable on Logistic Regressio...An Influence of Measurement Scale of Predictor Variable on Logistic Regressio...
An Influence of Measurement Scale of Predictor Variable on Logistic Regressio...IJECEIAES
 
POSTERIOR RESOLUTION AND STRUCTURAL MODIFICATION FOR PARAMETER DETERMINATION ...
POSTERIOR RESOLUTION AND STRUCTURAL MODIFICATION FOR PARAMETER DETERMINATION ...POSTERIOR RESOLUTION AND STRUCTURAL MODIFICATION FOR PARAMETER DETERMINATION ...
POSTERIOR RESOLUTION AND STRUCTURAL MODIFICATION FOR PARAMETER DETERMINATION ...IJCI JOURNAL
 
IRJET-A Survey on Effect of Meditation on Attention Level Using EEG
IRJET-A Survey on Effect of Meditation on Attention Level Using EEGIRJET-A Survey on Effect of Meditation on Attention Level Using EEG
IRJET-A Survey on Effect of Meditation on Attention Level Using EEGIRJET Journal
 
IRJET-Estimation of Meditation Effect on Attention Level using EEG
IRJET-Estimation of Meditation Effect on Attention Level using EEGIRJET-Estimation of Meditation Effect on Attention Level using EEG
IRJET-Estimation of Meditation Effect on Attention Level using EEGIRJET Journal
 
Data mining techniques a survey paper
Data mining techniques a survey paperData mining techniques a survey paper
Data mining techniques a survey papereSAT Publishing House
 
Galvanic Skin Response Data Classification for Emotion Detection
Galvanic Skin Response Data Classification for  Emotion Detection Galvanic Skin Response Data Classification for  Emotion Detection
Galvanic Skin Response Data Classification for Emotion Detection IJECEIAES
 

What's hot (18)

AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSISAN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
 
PERFORMANCE ASSESSMENT OF ANFIS APPLIED TO FAULT DIAGNOSIS OF POWER TRANSFORMER
PERFORMANCE ASSESSMENT OF ANFIS APPLIED TO FAULT DIAGNOSIS OF POWER TRANSFORMER PERFORMANCE ASSESSMENT OF ANFIS APPLIED TO FAULT DIAGNOSIS OF POWER TRANSFORMER
PERFORMANCE ASSESSMENT OF ANFIS APPLIED TO FAULT DIAGNOSIS OF POWER TRANSFORMER
 
Analysis On Classification Techniques In Mammographic Mass Data Set
Analysis On Classification Techniques In Mammographic Mass Data SetAnalysis On Classification Techniques In Mammographic Mass Data Set
Analysis On Classification Techniques In Mammographic Mass Data Set
 
A review on early hospital mortality prediction using vital signals
A review on early hospital mortality prediction using vital signalsA review on early hospital mortality prediction using vital signals
A review on early hospital mortality prediction using vital signals
 
A Detail Study of Wavelet Families for EMG Pattern Recognition
A Detail Study of Wavelet Families for EMG Pattern Recognition A Detail Study of Wavelet Families for EMG Pattern Recognition
A Detail Study of Wavelet Families for EMG Pattern Recognition
 
ON FEATURE SELECTION ALGORITHMS AND FEATURE SELECTION STABILITY MEASURES: A C...
ON FEATURE SELECTION ALGORITHMS AND FEATURE SELECTION STABILITY MEASURES: A C...ON FEATURE SELECTION ALGORITHMS AND FEATURE SELECTION STABILITY MEASURES: A C...
ON FEATURE SELECTION ALGORITHMS AND FEATURE SELECTION STABILITY MEASURES: A C...
 
Hx3115011506
Hx3115011506Hx3115011506
Hx3115011506
 
ANALYSIS OF MACHINE LEARNING ALGORITHMS WITH FEATURE SELECTION FOR INTRUSION ...
ANALYSIS OF MACHINE LEARNING ALGORITHMS WITH FEATURE SELECTION FOR INTRUSION ...ANALYSIS OF MACHINE LEARNING ALGORITHMS WITH FEATURE SELECTION FOR INTRUSION ...
ANALYSIS OF MACHINE LEARNING ALGORITHMS WITH FEATURE SELECTION FOR INTRUSION ...
 
Application of Hybrid Genetic Algorithm Using Artificial Neural Network in Da...
Application of Hybrid Genetic Algorithm Using Artificial Neural Network in Da...Application of Hybrid Genetic Algorithm Using Artificial Neural Network in Da...
Application of Hybrid Genetic Algorithm Using Artificial Neural Network in Da...
 
IRJET - Alzheimer’s Detection Model Using Machine Learning
IRJET - Alzheimer’s Detection Model Using Machine LearningIRJET - Alzheimer’s Detection Model Using Machine Learning
IRJET - Alzheimer’s Detection Model Using Machine Learning
 
FYP
FYPFYP
FYP
 
An Influence of Measurement Scale of Predictor Variable on Logistic Regressio...
An Influence of Measurement Scale of Predictor Variable on Logistic Regressio...An Influence of Measurement Scale of Predictor Variable on Logistic Regressio...
An Influence of Measurement Scale of Predictor Variable on Logistic Regressio...
 
POSTERIOR RESOLUTION AND STRUCTURAL MODIFICATION FOR PARAMETER DETERMINATION ...
POSTERIOR RESOLUTION AND STRUCTURAL MODIFICATION FOR PARAMETER DETERMINATION ...POSTERIOR RESOLUTION AND STRUCTURAL MODIFICATION FOR PARAMETER DETERMINATION ...
POSTERIOR RESOLUTION AND STRUCTURAL MODIFICATION FOR PARAMETER DETERMINATION ...
 
IRJET-A Survey on Effect of Meditation on Attention Level Using EEG
IRJET-A Survey on Effect of Meditation on Attention Level Using EEGIRJET-A Survey on Effect of Meditation on Attention Level Using EEG
IRJET-A Survey on Effect of Meditation on Attention Level Using EEG
 
IRJET-Estimation of Meditation Effect on Attention Level using EEG
IRJET-Estimation of Meditation Effect on Attention Level using EEGIRJET-Estimation of Meditation Effect on Attention Level using EEG
IRJET-Estimation of Meditation Effect on Attention Level using EEG
 
Data mining techniques a survey paper
Data mining techniques a survey paperData mining techniques a survey paper
Data mining techniques a survey paper
 
G046024851
G046024851G046024851
G046024851
 
Galvanic Skin Response Data Classification for Emotion Detection
Galvanic Skin Response Data Classification for  Emotion Detection Galvanic Skin Response Data Classification for  Emotion Detection
Galvanic Skin Response Data Classification for Emotion Detection
 

Viewers also liked

The Driving Analysis System through Wireless Network
The Driving Analysis System through Wireless NetworkThe Driving Analysis System through Wireless Network
The Driving Analysis System through Wireless NetworkIOSR Journals
 
Structural, compositional and electrochemical properties of Aluminium-Silicon...
Structural, compositional and electrochemical properties of Aluminium-Silicon...Structural, compositional and electrochemical properties of Aluminium-Silicon...
Structural, compositional and electrochemical properties of Aluminium-Silicon...IOSR Journals
 
Big Data in Bioinformatics & the Era of Cloud Computing
Big Data in Bioinformatics & the Era of Cloud ComputingBig Data in Bioinformatics & the Era of Cloud Computing
Big Data in Bioinformatics & the Era of Cloud ComputingIOSR Journals
 
Performance Evaluation of Different Data Mining Classification Algorithm and ...
Performance Evaluation of Different Data Mining Classification Algorithm and ...Performance Evaluation of Different Data Mining Classification Algorithm and ...
Performance Evaluation of Different Data Mining Classification Algorithm and ...IOSR Journals
 
Performance Analysis of ANN Training Algorithms to Detect the Magnetization L...
Performance Analysis of ANN Training Algorithms to Detect the Magnetization L...Performance Analysis of ANN Training Algorithms to Detect the Magnetization L...
Performance Analysis of ANN Training Algorithms to Detect the Magnetization L...IOSR Journals
 
Web Data mining-A Research area in Web usage mining
Web Data mining-A Research area in Web usage miningWeb Data mining-A Research area in Web usage mining
Web Data mining-A Research area in Web usage miningIOSR Journals
 
A Hybrid Approach for Content Based Image Retrieval System
A Hybrid Approach for Content Based Image Retrieval SystemA Hybrid Approach for Content Based Image Retrieval System
A Hybrid Approach for Content Based Image Retrieval SystemIOSR Journals
 
Intrusion Detection Techniques In Mobile Networks
Intrusion Detection Techniques In Mobile NetworksIntrusion Detection Techniques In Mobile Networks
Intrusion Detection Techniques In Mobile NetworksIOSR Journals
 
A Study on Recent Trends and Developments in Intrusion Detection System
A Study on Recent Trends and Developments in Intrusion Detection SystemA Study on Recent Trends and Developments in Intrusion Detection System
A Study on Recent Trends and Developments in Intrusion Detection SystemIOSR Journals
 
Design, Modelling& Simulation of Double Sided Linear Segmented Switched Reluc...
Design, Modelling& Simulation of Double Sided Linear Segmented Switched Reluc...Design, Modelling& Simulation of Double Sided Linear Segmented Switched Reluc...
Design, Modelling& Simulation of Double Sided Linear Segmented Switched Reluc...IOSR Journals
 
Matlab Based Analysis of 3-Ø Self-Excited Induction Generator with Nonlinear ...
Matlab Based Analysis of 3-Ø Self-Excited Induction Generator with Nonlinear ...Matlab Based Analysis of 3-Ø Self-Excited Induction Generator with Nonlinear ...
Matlab Based Analysis of 3-Ø Self-Excited Induction Generator with Nonlinear ...IOSR Journals
 
Enhancing Software Quality Using Agile Techniques
Enhancing Software Quality Using Agile TechniquesEnhancing Software Quality Using Agile Techniques
Enhancing Software Quality Using Agile TechniquesIOSR Journals
 
To Reduce The Handover Delay In Wimax When The Mobile Station Moves At Higher...
To Reduce The Handover Delay In Wimax When The Mobile Station Moves At Higher...To Reduce The Handover Delay In Wimax When The Mobile Station Moves At Higher...
To Reduce The Handover Delay In Wimax When The Mobile Station Moves At Higher...IOSR Journals
 
Aircraft Takeoff Simulation with MATLAB
Aircraft Takeoff Simulation with MATLABAircraft Takeoff Simulation with MATLAB
Aircraft Takeoff Simulation with MATLABIOSR Journals
 
Chemical Composition, In Vitro Digestibility And Gas Production Characteristi...
Chemical Composition, In Vitro Digestibility And Gas Production Characteristi...Chemical Composition, In Vitro Digestibility And Gas Production Characteristi...
Chemical Composition, In Vitro Digestibility And Gas Production Characteristi...IOSR Journals
 
Concepts and Derivatives of Web Services
Concepts and Derivatives of Web ServicesConcepts and Derivatives of Web Services
Concepts and Derivatives of Web ServicesIOSR Journals
 

Viewers also liked (20)

The Driving Analysis System through Wireless Network
The Driving Analysis System through Wireless NetworkThe Driving Analysis System through Wireless Network
The Driving Analysis System through Wireless Network
 
Structural, compositional and electrochemical properties of Aluminium-Silicon...
Structural, compositional and electrochemical properties of Aluminium-Silicon...Structural, compositional and electrochemical properties of Aluminium-Silicon...
Structural, compositional and electrochemical properties of Aluminium-Silicon...
 
Big Data in Bioinformatics & the Era of Cloud Computing
Big Data in Bioinformatics & the Era of Cloud ComputingBig Data in Bioinformatics & the Era of Cloud Computing
Big Data in Bioinformatics & the Era of Cloud Computing
 
Performance Evaluation of Different Data Mining Classification Algorithm and ...
Performance Evaluation of Different Data Mining Classification Algorithm and ...Performance Evaluation of Different Data Mining Classification Algorithm and ...
Performance Evaluation of Different Data Mining Classification Algorithm and ...
 
Performance Analysis of ANN Training Algorithms to Detect the Magnetization L...
Performance Analysis of ANN Training Algorithms to Detect the Magnetization L...Performance Analysis of ANN Training Algorithms to Detect the Magnetization L...
Performance Analysis of ANN Training Algorithms to Detect the Magnetization L...
 
Web Data mining-A Research area in Web usage mining
Web Data mining-A Research area in Web usage miningWeb Data mining-A Research area in Web usage mining
Web Data mining-A Research area in Web usage mining
 
A Hybrid Approach for Content Based Image Retrieval System
A Hybrid Approach for Content Based Image Retrieval SystemA Hybrid Approach for Content Based Image Retrieval System
A Hybrid Approach for Content Based Image Retrieval System
 
B01120813 copy
B01120813   copyB01120813   copy
B01120813 copy
 
Intrusion Detection Techniques In Mobile Networks
Intrusion Detection Techniques In Mobile NetworksIntrusion Detection Techniques In Mobile Networks
Intrusion Detection Techniques In Mobile Networks
 
A Study on Recent Trends and Developments in Intrusion Detection System
A Study on Recent Trends and Developments in Intrusion Detection SystemA Study on Recent Trends and Developments in Intrusion Detection System
A Study on Recent Trends and Developments in Intrusion Detection System
 
Design, Modelling& Simulation of Double Sided Linear Segmented Switched Reluc...
Design, Modelling& Simulation of Double Sided Linear Segmented Switched Reluc...Design, Modelling& Simulation of Double Sided Linear Segmented Switched Reluc...
Design, Modelling& Simulation of Double Sided Linear Segmented Switched Reluc...
 
E0212730
E0212730E0212730
E0212730
 
C0161018
C0161018C0161018
C0161018
 
Matlab Based Analysis of 3-Ø Self-Excited Induction Generator with Nonlinear ...
Matlab Based Analysis of 3-Ø Self-Excited Induction Generator with Nonlinear ...Matlab Based Analysis of 3-Ø Self-Excited Induction Generator with Nonlinear ...
Matlab Based Analysis of 3-Ø Self-Excited Induction Generator with Nonlinear ...
 
Enhancing Software Quality Using Agile Techniques
Enhancing Software Quality Using Agile TechniquesEnhancing Software Quality Using Agile Techniques
Enhancing Software Quality Using Agile Techniques
 
To Reduce The Handover Delay In Wimax When The Mobile Station Moves At Higher...
To Reduce The Handover Delay In Wimax When The Mobile Station Moves At Higher...To Reduce The Handover Delay In Wimax When The Mobile Station Moves At Higher...
To Reduce The Handover Delay In Wimax When The Mobile Station Moves At Higher...
 
N0171595105
N0171595105N0171595105
N0171595105
 
Aircraft Takeoff Simulation with MATLAB
Aircraft Takeoff Simulation with MATLABAircraft Takeoff Simulation with MATLAB
Aircraft Takeoff Simulation with MATLAB
 
Chemical Composition, In Vitro Digestibility And Gas Production Characteristi...
Chemical Composition, In Vitro Digestibility And Gas Production Characteristi...Chemical Composition, In Vitro Digestibility And Gas Production Characteristi...
Chemical Composition, In Vitro Digestibility And Gas Production Characteristi...
 
Concepts and Derivatives of Web Services
Concepts and Derivatives of Web ServicesConcepts and Derivatives of Web Services
Concepts and Derivatives of Web Services
 

Similar to Accuracy, Sensitivity and Specificity Measurement of Various Classification Techniques on Healthcare Data

ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...
ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...
ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...IRJET Journal
 
IRJET- Prediction of Heart Disease using RNN Algorithm
IRJET- Prediction of Heart Disease using RNN AlgorithmIRJET- Prediction of Heart Disease using RNN Algorithm
IRJET- Prediction of Heart Disease using RNN AlgorithmIRJET Journal
 
IRJET - Machine Learning Algorithms for the Detection of Diabetes
IRJET - Machine Learning Algorithms for the Detection of DiabetesIRJET - Machine Learning Algorithms for the Detection of Diabetes
IRJET - Machine Learning Algorithms for the Detection of DiabetesIRJET Journal
 
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...ijceronline
 
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSISAN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSISAIRCC Publishing Corporation
 
Comparative study of artificial neural network based classification for liver...
Comparative study of artificial neural network based classification for liver...Comparative study of artificial neural network based classification for liver...
Comparative study of artificial neural network based classification for liver...Alexander Decker
 
Applications of Artificial Neural Networks in Cancer Prediction
Applications of Artificial Neural Networks in Cancer PredictionApplications of Artificial Neural Networks in Cancer Prediction
Applications of Artificial Neural Networks in Cancer PredictionIRJET Journal
 
PREDICTION OF MALIGNANCY IN SUSPECTED THYROID TUMOUR PATIENTS BY THREE DIFFER...
PREDICTION OF MALIGNANCY IN SUSPECTED THYROID TUMOUR PATIENTS BY THREE DIFFER...PREDICTION OF MALIGNANCY IN SUSPECTED THYROID TUMOUR PATIENTS BY THREE DIFFER...
PREDICTION OF MALIGNANCY IN SUSPECTED THYROID TUMOUR PATIENTS BY THREE DIFFER...cscpconf
 
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...gerogepatton
 
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...ijaia
 
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...gerogepatton
 
Comparative Study of Data Mining Classification Algorithms in Heart Disease P...
Comparative Study of Data Mining Classification Algorithms in Heart Disease P...Comparative Study of Data Mining Classification Algorithms in Heart Disease P...
Comparative Study of Data Mining Classification Algorithms in Heart Disease P...paperpublications3
 
PARKINSON’S DISEASE DETECTION USING MACHINE LEARNING
PARKINSON’S DISEASE DETECTION USING MACHINE LEARNINGPARKINSON’S DISEASE DETECTION USING MACHINE LEARNING
PARKINSON’S DISEASE DETECTION USING MACHINE LEARNINGIRJET Journal
 
Heart Disease Prediction using Data Mining
Heart Disease Prediction using Data MiningHeart Disease Prediction using Data Mining
Heart Disease Prediction using Data MiningIRJET Journal
 
Health Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningHealth Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningIRJET Journal
 
An Intelligent Expert Based System Neural Network For The Diagnosis Of Type2 ...
An Intelligent Expert Based System Neural Network For The Diagnosis Of Type2 ...An Intelligent Expert Based System Neural Network For The Diagnosis Of Type2 ...
An Intelligent Expert Based System Neural Network For The Diagnosis Of Type2 ...AM Publications
 
ANALYSIS OF MACHINE LEARNING ALGORITHMS WITH FEATURE SELECTION FOR INTRUSION ...
ANALYSIS OF MACHINE LEARNING ALGORITHMS WITH FEATURE SELECTION FOR INTRUSION ...ANALYSIS OF MACHINE LEARNING ALGORITHMS WITH FEATURE SELECTION FOR INTRUSION ...
ANALYSIS OF MACHINE LEARNING ALGORITHMS WITH FEATURE SELECTION FOR INTRUSION ...IJNSA Journal
 
1 springer format chronic changed edit iqbal qc
1 springer format chronic changed edit iqbal qc1 springer format chronic changed edit iqbal qc
1 springer format chronic changed edit iqbal qcIAESIJEECS
 

Similar to Accuracy, Sensitivity and Specificity Measurement of Various Classification Techniques on Healthcare Data (20)

ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...
ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...
ICU Mortality Rate Estimation Using Machine Learning and Artificial Neural Ne...
 
IRJET- Prediction of Heart Disease using RNN Algorithm
IRJET- Prediction of Heart Disease using RNN AlgorithmIRJET- Prediction of Heart Disease using RNN Algorithm
IRJET- Prediction of Heart Disease using RNN Algorithm
 
IRJET - Machine Learning Algorithms for the Detection of Diabetes
IRJET - Machine Learning Algorithms for the Detection of DiabetesIRJET - Machine Learning Algorithms for the Detection of Diabetes
IRJET - Machine Learning Algorithms for the Detection of Diabetes
 
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...IJCER (www.ijceronline.com) International Journal of computational Engineerin...
IJCER (www.ijceronline.com) International Journal of computational Engineerin...
 
1207.2600
1207.26001207.2600
1207.2600
 
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSISAN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
AN ALGORITHM FOR PREDICTIVE DATA MINING APPROACH IN MEDICAL DIAGNOSIS
 
Comparative study of artificial neural network based classification for liver...
Comparative study of artificial neural network based classification for liver...Comparative study of artificial neural network based classification for liver...
Comparative study of artificial neural network based classification for liver...
 
Applications of Artificial Neural Networks in Cancer Prediction
Applications of Artificial Neural Networks in Cancer PredictionApplications of Artificial Neural Networks in Cancer Prediction
Applications of Artificial Neural Networks in Cancer Prediction
 
PREDICTION OF MALIGNANCY IN SUSPECTED THYROID TUMOUR PATIENTS BY THREE DIFFER...
PREDICTION OF MALIGNANCY IN SUSPECTED THYROID TUMOUR PATIENTS BY THREE DIFFER...PREDICTION OF MALIGNANCY IN SUSPECTED THYROID TUMOUR PATIENTS BY THREE DIFFER...
PREDICTION OF MALIGNANCY IN SUSPECTED THYROID TUMOUR PATIENTS BY THREE DIFFER...
 
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...
 
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...
 
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...
A MODIFIED MAXIMUM RELEVANCE MINIMUM REDUNDANCY FEATURE SELECTION METHOD BASE...
 
Comparative Study of Data Mining Classification Algorithms in Heart Disease P...
Comparative Study of Data Mining Classification Algorithms in Heart Disease P...Comparative Study of Data Mining Classification Algorithms in Heart Disease P...
Comparative Study of Data Mining Classification Algorithms in Heart Disease P...
 
PARKINSON’S DISEASE DETECTION USING MACHINE LEARNING
PARKINSON’S DISEASE DETECTION USING MACHINE LEARNINGPARKINSON’S DISEASE DETECTION USING MACHINE LEARNING
PARKINSON’S DISEASE DETECTION USING MACHINE LEARNING
 
Heart Disease Prediction using Data Mining
Heart Disease Prediction using Data MiningHeart Disease Prediction using Data Mining
Heart Disease Prediction using Data Mining
 
Health Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep LearningHealth Care Application using Machine Learning and Deep Learning
Health Care Application using Machine Learning and Deep Learning
 
Af4102237242
Af4102237242Af4102237242
Af4102237242
 
An Intelligent Expert Based System Neural Network For The Diagnosis Of Type2 ...
An Intelligent Expert Based System Neural Network For The Diagnosis Of Type2 ...An Intelligent Expert Based System Neural Network For The Diagnosis Of Type2 ...
An Intelligent Expert Based System Neural Network For The Diagnosis Of Type2 ...
 
ANALYSIS OF MACHINE LEARNING ALGORITHMS WITH FEATURE SELECTION FOR INTRUSION ...
ANALYSIS OF MACHINE LEARNING ALGORITHMS WITH FEATURE SELECTION FOR INTRUSION ...ANALYSIS OF MACHINE LEARNING ALGORITHMS WITH FEATURE SELECTION FOR INTRUSION ...
ANALYSIS OF MACHINE LEARNING ALGORITHMS WITH FEATURE SELECTION FOR INTRUSION ...
 
1 springer format chronic changed edit iqbal qc
1 springer format chronic changed edit iqbal qc1 springer format chronic changed edit iqbal qc
1 springer format chronic changed edit iqbal qc
 

More from IOSR Journals (20)

A011140104
A011140104A011140104
A011140104
 
M0111397100
M0111397100M0111397100
M0111397100
 
L011138596
L011138596L011138596
L011138596
 
K011138084
K011138084K011138084
K011138084
 
J011137479
J011137479J011137479
J011137479
 
I011136673
I011136673I011136673
I011136673
 
G011134454
G011134454G011134454
G011134454
 
H011135565
H011135565H011135565
H011135565
 
F011134043
F011134043F011134043
F011134043
 
E011133639
E011133639E011133639
E011133639
 
D011132635
D011132635D011132635
D011132635
 
C011131925
C011131925C011131925
C011131925
 
B011130918
B011130918B011130918
B011130918
 
A011130108
A011130108A011130108
A011130108
 
I011125160
I011125160I011125160
I011125160
 
H011124050
H011124050H011124050
H011124050
 
G011123539
G011123539G011123539
G011123539
 
F011123134
F011123134F011123134
F011123134
 
E011122530
E011122530E011122530
E011122530
 
D011121524
D011121524D011121524
D011121524
 

Recently uploaded

HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxSCMS School of Architecture
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdfKamal Acharya
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaOmar Fathy
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Arindam Chakraborty, Ph.D., P.E. (CA, TX)
 
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...Amil baba
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxJuliansyahHarahap1
 
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...drmkjayanthikannan
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.Kamal Acharya
 
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptxOrlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptxMuhammadAsimMuhammad6
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationBhangaleSonal
 
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdfAldoGarca30
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdfKamal Acharya
 
AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsvanyagupta248
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptNANDHAKUMARA10
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . pptDineshKumar4165
 
Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdfKamal Acharya
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptDineshKumar4165
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTbhaskargani46
 

Recently uploaded (20)

HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
 
School management system project Report.pdf
School management system project Report.pdfSchool management system project Report.pdf
School management system project Report.pdf
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
Navigating Complexity: The Role of Trusted Partners and VIAS3D in Dassault Sy...
 
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
NO1 Top No1 Amil Baba In Azad Kashmir, Kashmir Black Magic Specialist Expert ...
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptxOrlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
 
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
Call Girls in South Ex (delhi) call me [🔝9953056974🔝] escort service 24X7
 
DC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equationDC MACHINE-Motoring and generation, Armature circuit equation
DC MACHINE-Motoring and generation, Armature circuit equation
 
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdf
 
AIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech studentsAIRCANVAS[1].pdf mini project for btech students
AIRCANVAS[1].pdf mini project for btech students
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 
Thermal Engineering Unit - I & II . ppt
Thermal Engineering  Unit - I & II . pptThermal Engineering  Unit - I & II . ppt
Thermal Engineering Unit - I & II . ppt
 
Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdf
 
Thermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.pptThermal Engineering -unit - III & IV.ppt
Thermal Engineering -unit - III & IV.ppt
 
Generative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPTGenerative AI or GenAI technology based PPT
Generative AI or GenAI technology based PPT
 

Accuracy, Sensitivity and Specificity Measurement of Various Classification Techniques on Healthcare Data

  • 1. IOSR Journal of Computer Engineering (IOSR-JCE) e-ISSN: 2278-0661, p- ISSN: 2278-8727Volume 11, Issue 5 (May. - Jun. 2013), PP 70-73 www.iosrjournals.org www.iosrjournals.org 70 | Page Accuracy, Sensitivity and Specificity Measurement of Various Classification Techniques on Healthcare Data Niyati Gupta1 , Arushi Rawal1 , Dr. V.L. Narasimhan2 , Savita Shiwani1 1 (Dept. of Computer Science and Engineering, Gyan Vihar University, Jaipur, Rajasthan, India) 2 (Dept. of Computer Science, East Carolina University, Greenville, USA) Abstract: Healthcare industry is a type of industry, where the data is very large and sensitive. The data is required to be handled very carefully without any mismanagement. There are various data mining techniques that have been used in healthcare industry but the research that has to be done now is on the performance of the various classification techniques. So that amongst the all, the best on can be chosen. In this paper, we aim to consider the accuracy percentage, sensitivity percentage and specificity percentage to provide a result. Keywords: accuracy, classification, data mining, healthcare industry, sensitivity, specificity. I. Introduction There has been a lot of work that has been already done using data mining in healthcare industry and due to enormous success, the people are getting more and more interested in this field .The dataset chosen by us is the diabetes data set. We chose it because it is a common disease throughout the world. The Pima Indians data set is widely used in the diabetic studies because Pima Indians generally show the symptoms of Type-2 diabetes. The aim of this study is to find the accuracy, sensitivity and specificity percentage of various classification methods. We here have tried to compare the results of various classification methods in Weka with the classification methods implemented on few other tools like Rapidminer and matlab on the basis of few ROC parameters. II. Literature Survey There are various numbers of researchers that have been reported working on diagnosis of common diseases. In a study, the diagnosis of Pima Indian diabetes by using the evolving fuzzy approach, has been addressed by Lekas et al. Sapna and Tamilaras [1], proposed a research that was based on the concept that diabetic mellitus is a cause for nerve disorder .In another study by Jeatarbul and Wong [2], the classification performance is obtained by various types of neural networks i.e. Back Propagation NN, Radial Basis Function NN, General Regression NN, Probabilistic NN and Complementary NN. A new SSVM for the problems of classification was proposed by Santi Waulan et al [3]. Radha and Rajagopalan, to diagnosis of diabetes introduced an application of fuzzy logic.[4]. In a study, Huang et al used data mining to detect key determinants of Type-2 diabetes. III. Description Of The Data Set The dataset used in our study is of Pima Indians who have symptoms of diabetes. The Pima Indians data set is publically available at UCI [5]. There are 768 observations and 9 attributes with no missing values, but there are few impossible values. All the patients in this data set are females, living near Arizona. The attributes are shown in the table below:
  • 2. Accuracy, sensitivity and specificity measurement of various classification techniques on healthcare www.iosrjournals.org 71 | Page Table 1: Attributes The characteristics of the dataset used are shown below in a summarized format. Table 2: Characteristics of data set IV. Methodology Several algorithms with running parameters are explained below: Multilayer Perceptron (MLP)-It is a neural network classification algorithm and is very commonly used. It is experimented in this study with the parameters: learning rate =0.3/0.15; momentum = 0.2; random speed =0; validation threshold= 20; number of epochs =500[6]. BayesNet- This algorithm considers two assumptions: nominal values and no missing values. For estimating the conditional probability tables of network, there are two different parts. Simple estimator and k2 search algorithm are used to run the bayesnet [7]. J48graft -J48 or J48graft is the weka version of C4.5 classifier. Selected parameters are: confidence factor=0.25; min num obj =2; subtree raising=true; unpruned=false [8]. JRip -In this algorithm to produce error reduction, repeated incremental pruning is done. The implementation of JRip in weka is done with parameters: folds= 10; min no. =2; optimizations=2; seed=1; use pruning =true [9]. The classification methods used on various other tools: PNN – stands for “Probabilistic Neural Network”. As the word Neural is so the working is like feed forward neural network. This algorithm is normally used for the classification. It consists of 4 layers 1. Input Layer 2. Hidden Layer 3. Output Layer LVQ - Learning Vector Quantization discovers the network architecture that has been used for clustering. FFN - Feed Froward network is in one direction flow of data directly from input nodes to hidden nodes to output nodes. CFN - Cascade forward networks works like FFN but there is a dependency between the nodes. DTDN - Distributed Time delay Networks is a time sensitive FFN kind off network where there is a delay associated with every node thus there is a finite dynamic response to time series input. TDN - Time delay network has a tapped delay line at the input weight in which the dynamics appear only at the input layer of a static multilayer feed forward network.[1] GINI - Two separate parts are created in the form of binary divisions, each output is separated according to the calculation –  Ginileft  Giniright AIS - , artificial immune systems (AIS) are a class of computationally intelligent systems inspired by the principles and processes of the vertebrate immune system[wiki]. V. Roc Parameters ROC parameters are used to compare the results of various classifiers. For accuracy percentage, sensitivity percentage and specificity percentage, TP, TN, FP AND FN expressions are used. The abbreviations of the above mentioned ROC parameters and their explanation is shown in the table given below:
  • 3. Accuracy, sensitivity and specificity measurement of various classification techniques on healthcare www.iosrjournals.org 72 | Page Table: 3 the ROC PARAMETERS Various formulas based on ROC parameters are given below: ACCURACY = (TP+TN)/ (TP+TN+FP+FN) SENSITIVITY= (TP)/ (TP+FN) SPECIFICITY= (TN)/ (TN+FP) VI. Results Of Study To compare the various classification methods namely Multilayer Perception(MLP) , Neural Network, Bayes Network Classifier , J48graft (C4.5), JRip, Fuzzy Lattice Reasoning (FLR) we worked on weka and the other algorithms like PNN , LVQ,FFN ,CFN, DTDN,TDN are implemented on MATLAB , while GINI algorithm is implemented on Rapidminer. The accuracy, sensitivity and specificity is determined for each algorithms based on the values of various ROC parameters and the formulas. The results of the classifiers in Weka are shown in table 4, while the results of other algorithms are shown in table 5. Accuracy% Sensitivity% Specificity% MLP 79.19 % 61.1% 82.6% BAYESNET 78.98% 60.8 % 81.6% J48GRAFT 81.33% 59.7 % 81.4% JRIP 80.91% 55.5 % 83.8 % Table: 4 Accuracy, sensitivity and specificity percentages using Weka classifiers. accuracy sensitivity specificity PNN 72.0% 63.33% 76.9% LVQ 73.6% 54.4% 84.4 % FFN 68.8% 54.4% 76.9% CFN 68.0% 62.2% 71.3% DTDN 76.0% 53.3% 88.8% TDN 66.0% 41.1% 81.3% GINI 65.0% 44.7% 77.8% AIS 68.8% 52.2% 78.1% Table: 5 Accuracy, sensitivity and specificity percentages using classifiers on various other tools.
  • 4. Accuracy, sensitivity and specificity measurement of various classification techniques on healthcare www.iosrjournals.org 73 | Page VII. Result Analysis And Conclusion As we all are aware that clustering is done to find the clusters in a way that the data that fall under same clusters is similar and dissimilar data lie in other clusters. We have done clustering here to divide the patients in clusters based on low risk and high risk of being sick. Figure 1 Figure-2 In this study, we have taken various classification methods and compared the results of various algorithms on Weka on the basis of accuracy, sensitivity and specificity with the results of various other algorithms implemented on Matlab and Rapidminer. According to the figure 1 and table 4, we can determine that J48 has the highest accuracy percentage of 81.33 %, while if we consider the other parameters then PNN has the highest sensitivity of 63.33% and DTDN has the highest specificity of 88.8%. References [1] M. S. Sapna and D. A. Tamilarasi, “Fuzzy Relational Equation in Preventing Neuropathy Diabetic”, Internati- onal Journal of Recent Trends in Engineering, Vol. 2, No. 4, 2009, p. 126. [2] Jeatrakul and K. W. Wong, “Comparing the Perform-ance of Different Neural Networks for Binary Classifica-tion Problems,” The 8th International Symposium on Na- tural Language Processing, Bangkok, 20-22 October 2009, pp. 111-115. doi:10.1109/SNLP.2009.5340935 [3] S. W. Purnami, A. Embong, J. M. Zain and S. P. Rahayu, “A New Smooth Support Vector Machine and Its Appli- cations in Diabetes Disease Diagnosis,” Journal of Com-puter Science, Vol. 5, No. 12, pp. 1006-1011. [4] R. Radha and S. P. Rajagopalan, “Fuzzy Logic Approach for Diagnosis of Diabetes,” Information Technology Jour- nal, Vol. 6, No. 1, pp. 96-102. doi:10.3923/itj.2007.96.102 [5] UCI Machine Learning Repository. http://www.ics.uci.edu/mlearn/MLRepository.html [6] P. Werbos, “Beyond Regression: New Tools for Predi- ction and Analysis in the Behavioral Sciences,” Ph.D. Thesis, Harvard University, Cambridge, 1974 [7] G. H. John and P. Langley, “Estimating Continuous Dis-tributions in Bayesian Classifiers,” Proceedings of the 11th Conference on Uncertainty in Artificial Intelligence, San Francisco, 1995, pp. 338-345. [8] J. Quinlan, “C4.5: Programs for Machine Learning,” Mo- rgan Kaufmann, San Mateo, 1993 [9] I.H. Witten and E. Frank, “Data Mining: Practical Ma- chine Learning Tools and Techniques,” 2nd Edition, Mor- gan Kaufmann, San Francisco, 2005.