SlideShare ist ein Scribd-Unternehmen logo
1 von 24
Downloaden Sie, um offline zu lesen
RajandeepKaur
Ph.D Scholar
18803003
Chronic Kidney Disease Prediction with
Attribute Reduction using Data Mining
Classifiers
Content
 Introduction
 What is Chronic Kidney Disease (CKD)
 Data Mining & Classification
 Role ofAttribute Selection
 LiteratureReview
 Dataset Used
 PerformanceParameters
 Results & Discussion
 Conclusion
 References
Introduction
 As the past records show, the number of deaths in
India due to chronic kidney disease (CKD) were 5.21
million in 2008 and this number can be further
raised to 7.63 million by 2020 [4] .
 There is need of detection of the chronic kidney
disease at early stage before getting it worse.
 To reduce mortality rate, an efficient technique is required
to predict and classify it.
Need of Study
General Problems :
 A large space is required for complete dataset
 Large computation time
 Not providing good Accuracy
Aim of study:
To predict Chronic Kidney Disease in more accurate and
faster way with reduced attributes.
What is Chronic Kidney Disease (CKD)
Structural or functional abnormalities of the kidneys for
>3 months, as manifested by either:
1. Kidney damage, with or without decreased GFR,
as defined by
 pathologic abnormalities
 markers of kidney damage, including abnormalities in the
composition of the blood or urine or abnormalities in
imaging tests
2. GFR <60 ml/min/1.73 m2, with or without
kidney damage; where GFR is Glomerular
FiltrationRate.
CKD
death
Stages in Progression of Chronic Kidney Disease
and Therapeutic Strategies
Complications
Screening
for CKD
risk factors
CKD risk
reduction;
Screening for
CKD
Diagnosis
& treatment;
Treat
comorbid
conditions;
Slow
progression
Estimate
progression;
Treat
complications;
Prepare for
replacement
Replacement
by dialysis
& transplant
Normal
Increased
risk
Kidney
failure
Damage  GFR
Data Mining & Classification
 Data mining refers to extracting meaningful
information from hidden patterns of dataset [2].
 The data mining techniques are very useful in health
informatics [16, 17].
 Data mining classification techniques play a vital role
in classifying various diseases from symptoms and
various medical tests.
Attribute Selection
 Before inducing a model we almost always do input
engineering
 The most useful part of this is attribute selection (also
called feature selection)
 Select relevantattributes
 Remove redundantand/or irrelevantattributes
 Select the most “relevant” subset of attributes according to
some selection criteria.
Why?
Reasons for Attribute Selection
 Simpler model
 Moretransparent
 Easier to interpret
 Faster model induction
 Structural knowledge
 Knowing which attributes are important may be inherently
important to the application
 Reduce storage requirement
What about the accuracy?
Attribute Selection Contd…
 Attribute Selection can be done by following two
methods:
 Filter
 Wrapper
Filter Method
 Results in either
Ranked list of attributes
 Typical when each attribute is evaluated individually
 Must select how many to keep
A selected subset of attributes
 Forward selection
 Best first
 Random search such as genetic algorithm
Wrapper Method
 “Wrap around” the learning algorithm
 Always evaluate subsets
 Return the best subset of attributes
 Use same search methods as before
 Wrapper approach is generally more accurate but
also more computationally expensive
Literature Review
Researcher Year Classifier Accuracy Remarks
K.R. Lakshmi [6] 2014 ANN 93.8521% Performed better than
Decision Tree and Logical
regressionclassifiers
Naganna Chetty
[7]
2015 NaïveBayes,
SMO,IBK
99%,98.25%,
100%
Attribute Reduction using
Wrapper Method
S.Vijayarani [8] 2015 SVM 76.32%. 584 instances and six
attributes
L.Jerlin Rubini
[9]
2015 Multilayer
Preceptor
99.75% Performed better than radial
basis function network, logistic
regression
Uma N Dulhare
[10]
2016 NaïveBayes 97.5% Attribute Reduction using
OneR
HuseyinPolat
[11]
2017 SVM 98.5%. Attribute Reduction
WalaA. [12] 2017 Decisiontree 99% Missing Values are replaced
withmean
DataSet Used
chronic_kidney_disease
from UCI machine learning
repository
Thedataset contains:
•400 instances
•25 attributes
 14 are nominal
11 are numeric
PERFORMANCE ANALYSIS PARAMETERS
 Accuracy
 Precision
 Recall
 RMSE (Root Mean Square Error)
 MAE (MeanAbsolute Error)
 ExecutionTime
 Kappa Statistics
 ROC(Receiver Operating Characteristics)
RESULT AND DISCUSSION
 Tool
 WEKA 3.8 (The Waikato Environment for Knowledge
Analysis)
 Classifier
 J48,DecisionTable and IBK
 AttributeSelection
 CfsSubsetEval,ClassifierSubsetEval,and WrapperSubsetEval
 SearchingTechnique
 Greedy and Bestfit Search Approach
RESULT OF J48, DECISION TABLE AND IBK
CLASSIFIERS ON CKD
Algorithm Accuracy Precision Recall Kappa Statistics Execution Time RMSE
J48 99% 0.990 0.990 0.9786 0.13 0.0807
DecisionTable 99% 0.990 0.990 0.9786 0.46 0.2507
IBK 95.75% 0.962 0.958 0.9113 0.01 0.2056
General Observations:
•J48 and Decision table provide 99% accuracy
•J48 provides least RMSE value
•IBK takes least time to execute
Attribute Reduction
Classifier Attribute Selection Method
Attributes in Original
Dataset
No. of reduced Attributes Attribute Reduction (in %)
J48
CFSSubsetEval+ Greedy
Stepwise
25 17 32
ClassifierSubsetEval+Greedy
Stepwise
25 4 84
WrapperSubsetEval+Best Fit 25 13 48
Decision Table
CFSSubsetEval+ Greedy
Stepwise
25 17 32
ClassifierSubsetEval+Greedy
Stepwise
25 4 84
WrapperSubsetEval+Best Fit 25 7 72
IBK
CFSSubsetEval+ Greedy
Stepwise
25 17 32
ClassifierSubsetEval+Greedy
Stepwise
25 5 80
WrapperSubsetEval+Best Fit 25 7 72
Accuracy of
Reduced Dataset
Classifier Attribute Selection Method Attribute Reduction (in %)
Accuracy without
Reduction
Accuracy with Reduction
J48
CFSSubsetEval+ Greedy
Stepwise
32 99 99
ClassifierSubsetEval+Greedy
Stepwise
84 99 98.25
WrapperSubsetEval+Best Fit 48 99 99
Decision Table
CFSSubsetEval+ Greedy
Stepwise
32 99 98.75
ClassifierSubsetEval+Greedy
Stepwise
84 99 99.25
WrapperSubsetEval+Best Fit 72 99 99
IBK
CFSSubsetEval+ Greedy
Stepwise
32 95.75 98
ClassifierSubsetEval+Greedy
Stepwise
80 95.75 99.75
WrapperSubsetEval+Best Fit 72 95.75 100
Comparison of Accuracy for J48, Decision
Table and IBK Classifier with original and
reduced dataset
CONCLUSION
 The accuracy of IBK for original dataset is 95.75%
 While with 72% reduced dataset, it provides 100% accuracy
using WrapperSubsetEval attribute evaluator with bestfirst
search.
 J48 and Decision Table provides better results than IBK for
originaldataset
 While IBK performed better with reduced dataset than
originaldataset.
 IBK can be used to predict CKD in efficient and fast way with
reduced attributes.
References
[1] L. Jena, and N. Ku. Kamila, "Distributed data mining classification algorithms for prediction of chronic-
kidney-disease," International Journal of Emerging Research in Management &Technology, vol-4, Issue-
11, pp: 110-118, November 2015.
[2] K. Chandel, V. Kunwar, S. Sabitha, T. Choudhury, and S. Mukherjee, “A comparative study on thyroid
disease detection using K-nearest neighbor and Naive Bayes classification techniques, CSI transactions on
ICT, 4(2-4), pp: 313-319, 2016.
[3] Sudhir B. Jagtap, "Census data mining and data analysis using WEKA," arXiv preprint arXiv:1310.4647,
2013.
[4] S.Dilli Arasu, R.Thirumalaiselvi, “Review of Chronic Kidney Disease based on Data Mining Techniques,”
International Journal ofApplied Engineering Research, vol-12, pp: 13498-13505, 2017.
[5] S. Zeynu, Shruti Patil, “Survey on Prediction of Chronic Kidney Disease Using Data Mining Classification
Techniques and Feature Selection,” International Journal of Pure and Applied Mathematics, vol-118, No.
8,pp:149-156, 2018.
[6] K. R. Lakshmi, Y. Nagesh, and M. Veera Krishna, "Performance comparison of three data mining techniques
for predicting kidney dialysis survivability," International Journal of Advances in Engineering &
Technology, vol. 7, pp: 242-254, 2014.
[7] N. Chetty, Kunwar Singh Vaisla, and Sithu D. Sudarsan, “Role of attributes selection in classification of
Chronic Kidney Disease patients,” Computing, Communication and Security (ICCCS), International
Conference on. IEEE, 2015.
References
[8] S. Vijayarani, and S. Dhayanand, "Data mining classification algorithms for kidney disease
prediction,"International Journal on Cybernetics and Informatics (IJCI) , 2015.
[9] L. Jerlin Rubini and Dr. P. Eswaran, “Generating comparative analysis of early stage prediction of Chronic
Kidney Disease,” International Journal of Modern Engineering Research (IJMER), Volume 5, Issue 7, pp
49-55, July2015.
[10] Uma N. Dulhare, and Mohammad Ayesha, “Extraction of action rules for chronic kidney disease using
Naïve bayes classifier,” Computational Intelligence and Computing Research (ICCIC), IEEE International
Conference on IEEE, 2016.
[11] H. Polat, Homay Danaei Mehr, and Aydin Cetin, “Diagnosis of chronic kidney disease based on support
vector machine by feature selection methods,” Journal of medical systems, Feb 2017.
[12] W. Abedalkhader, and Noora Abdulrahman, “Missing Data Classification Of Chronic Kidney Disease,”
International Journal of Data Mining & Knowledge Management Process (IJDKP) Vol.7, No.5/6,
November 2017.
[13] Abeer Y. Al-Hyari, “Chronic Kidney Disease Prediction System UsingClassifying Data Mining Techniques,”
Library of university of Jordan, 2012.
[14 Jiliang Tang, Salem Alelyani, and Huan Liu, “Feature selection for classification: A review,” Data
classification:Algorithms and applications, 2014.
References
[15] Geoffrey Holmes, Andrew Donkin, and Ian H. Witten, “Weka: A machine learning workbench,”
Intelligent Information Systems, 1994. Proceedings of the 1994 Second Australian and New Zealand
Conference on. IEEE, 1994.
[16] Mary K. Obenshain, “Application of data mining techniques to healthcare data,” Infection Control &
Hospital Epidemiology25.8, pp: 690-695, 2004.
[17] Cheng, Li-Chen, Ya-Han Hu, and Shr-Han Chiou, “Applying the Temporal Abstraction Technique to the
Predictionof Chronic Kidney Disease Progression,” Journal of medical systems 41, April 2017.
[18] Neeraj Bhargava, Girja Sharma, Ritu Bhargava, and Manish Mathuria, “Decision tree analysis on J48
algorithm for data mining,” Proceedings of International Journal of Advanced Research in Computer
Scienceand Software Engineering, Vol. 3, pp:1114-1119, June 2013.
[19] Hongjun Lu, and Hongyan Liu, “Decision tables: Scalable classification exploring RDBMS
capabilities,”Proceedings of the 26th International Conference onVery Large Data Bases,VLDB'00. 2000.

Weitere ähnliche Inhalte

Was ist angesagt?

Heart Attack Prediction using Machine Learning
Heart Attack Prediction using Machine LearningHeart Attack Prediction using Machine Learning
Heart Attack Prediction using Machine Learningmohdshoaibuddin1
 
Heart Disease Identification Method Using Machine Learnin in E-healthcare.
Heart Disease Identification Method Using Machine Learnin in E-healthcare.Heart Disease Identification Method Using Machine Learnin in E-healthcare.
Heart Disease Identification Method Using Machine Learnin in E-healthcare.SUJIT SHIBAPRASAD MAITY
 
INTRODUCTION TO MACHINE LEARNING.pptx
INTRODUCTION TO MACHINE LEARNING.pptxINTRODUCTION TO MACHINE LEARNING.pptx
INTRODUCTION TO MACHINE LEARNING.pptxAbhigyanMishra17
 
Predictive analytics in health insurance
Predictive analytics in health insurancePredictive analytics in health insurance
Predictive analytics in health insurancePrasad Narasimhan
 
Prediction of heart disease using machine learning.pptx
Prediction of heart disease using machine learning.pptxPrediction of heart disease using machine learning.pptx
Prediction of heart disease using machine learning.pptxkumari36
 
Classification Based Machine Learning Algorithms
Classification Based Machine Learning AlgorithmsClassification Based Machine Learning Algorithms
Classification Based Machine Learning AlgorithmsMd. Main Uddin Rony
 
Predictive Analytics - An Overview
Predictive Analytics - An OverviewPredictive Analytics - An Overview
Predictive Analytics - An OverviewMachinePulse
 
Diabetes prediction using machine learning
Diabetes prediction using machine learningDiabetes prediction using machine learning
Diabetes prediction using machine learningdataalcott
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine LearningRahul Jain
 
Prediction of Heart Disease using Machine Learning Algorithms: A Survey
Prediction of Heart Disease using Machine Learning Algorithms: A SurveyPrediction of Heart Disease using Machine Learning Algorithms: A Survey
Prediction of Heart Disease using Machine Learning Algorithms: A Surveyrahulmonikasharma
 
Diabetes prediction using different machine learning approaches
Diabetes prediction using different machine learning approachesDiabetes prediction using different machine learning approaches
Diabetes prediction using different machine learning approachesCloudTechnologies
 
Object Detection & Tracking
Object Detection & TrackingObject Detection & Tracking
Object Detection & TrackingAkshay Gujarathi
 
CAR PRICE PREDICTION.pptx
CAR PRICE PREDICTION.pptxCAR PRICE PREDICTION.pptx
CAR PRICE PREDICTION.pptxNAVINCHACKO1
 
Heart disease prediction system
Heart disease prediction systemHeart disease prediction system
Heart disease prediction systemSWAMI06
 
Heart disease prediction
Heart disease predictionHeart disease prediction
Heart disease predictionAriful Haque
 
Types of Machine Learning
Types of Machine LearningTypes of Machine Learning
Types of Machine LearningSamra Shahzadi
 
Cardiovascular Disease Prediction Using Machine Learning Approaches.pptx
Cardiovascular Disease Prediction Using Machine Learning Approaches.pptxCardiovascular Disease Prediction Using Machine Learning Approaches.pptx
Cardiovascular Disease Prediction Using Machine Learning Approaches.pptxTaminul Islam
 

Was ist angesagt? (20)

Data Exploration.pptx
Data Exploration.pptxData Exploration.pptx
Data Exploration.pptx
 
Heart Attack Prediction using Machine Learning
Heart Attack Prediction using Machine LearningHeart Attack Prediction using Machine Learning
Heart Attack Prediction using Machine Learning
 
Heart Disease Identification Method Using Machine Learnin in E-healthcare.
Heart Disease Identification Method Using Machine Learnin in E-healthcare.Heart Disease Identification Method Using Machine Learnin in E-healthcare.
Heart Disease Identification Method Using Machine Learnin in E-healthcare.
 
INTRODUCTION TO MACHINE LEARNING.pptx
INTRODUCTION TO MACHINE LEARNING.pptxINTRODUCTION TO MACHINE LEARNING.pptx
INTRODUCTION TO MACHINE LEARNING.pptx
 
Predictive analytics in health insurance
Predictive analytics in health insurancePredictive analytics in health insurance
Predictive analytics in health insurance
 
Final ppt
Final pptFinal ppt
Final ppt
 
Prediction of heart disease using machine learning.pptx
Prediction of heart disease using machine learning.pptxPrediction of heart disease using machine learning.pptx
Prediction of heart disease using machine learning.pptx
 
Classification Based Machine Learning Algorithms
Classification Based Machine Learning AlgorithmsClassification Based Machine Learning Algorithms
Classification Based Machine Learning Algorithms
 
Predictive Analytics - An Overview
Predictive Analytics - An OverviewPredictive Analytics - An Overview
Predictive Analytics - An Overview
 
Diabetes prediction using machine learning
Diabetes prediction using machine learningDiabetes prediction using machine learning
Diabetes prediction using machine learning
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
 
Prediction of Heart Disease using Machine Learning Algorithms: A Survey
Prediction of Heart Disease using Machine Learning Algorithms: A SurveyPrediction of Heart Disease using Machine Learning Algorithms: A Survey
Prediction of Heart Disease using Machine Learning Algorithms: A Survey
 
PROJECT FINAL PPT
PROJECT FINAL PPTPROJECT FINAL PPT
PROJECT FINAL PPT
 
Diabetes prediction using different machine learning approaches
Diabetes prediction using different machine learning approachesDiabetes prediction using different machine learning approaches
Diabetes prediction using different machine learning approaches
 
Object Detection & Tracking
Object Detection & TrackingObject Detection & Tracking
Object Detection & Tracking
 
CAR PRICE PREDICTION.pptx
CAR PRICE PREDICTION.pptxCAR PRICE PREDICTION.pptx
CAR PRICE PREDICTION.pptx
 
Heart disease prediction system
Heart disease prediction systemHeart disease prediction system
Heart disease prediction system
 
Heart disease prediction
Heart disease predictionHeart disease prediction
Heart disease prediction
 
Types of Machine Learning
Types of Machine LearningTypes of Machine Learning
Types of Machine Learning
 
Cardiovascular Disease Prediction Using Machine Learning Approaches.pptx
Cardiovascular Disease Prediction Using Machine Learning Approaches.pptxCardiovascular Disease Prediction Using Machine Learning Approaches.pptx
Cardiovascular Disease Prediction Using Machine Learning Approaches.pptx
 

Ähnlich wie Chronic Kidney Disease Prediction

Propose a Enhanced Framework for Prediction of Heart Disease
Propose a Enhanced Framework for Prediction of Heart DiseasePropose a Enhanced Framework for Prediction of Heart Disease
Propose a Enhanced Framework for Prediction of Heart DiseaseIJERA Editor
 
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
 
DATA MINING CLASSIFICATION ALGORITHMS FOR KIDNEY DISEASE PREDICTION
DATA MINING CLASSIFICATION ALGORITHMS FOR KIDNEY DISEASE PREDICTION DATA MINING CLASSIFICATION ALGORITHMS FOR KIDNEY DISEASE PREDICTION
DATA MINING CLASSIFICATION ALGORITHMS FOR KIDNEY DISEASE PREDICTION IJCI JOURNAL
 
APPLICATION OF DATA MINING TECHNIQUES FOR THE PREDICTION OF CHRONIC KIDNEY DI...
APPLICATION OF DATA MINING TECHNIQUES FOR THE PREDICTION OF CHRONIC KIDNEY DI...APPLICATION OF DATA MINING TECHNIQUES FOR THE PREDICTION OF CHRONIC KIDNEY DI...
APPLICATION OF DATA MINING TECHNIQUES FOR THE PREDICTION OF CHRONIC KIDNEY DI...IAEME Publication
 
IRJET- Feature Selection and Classifier Accuracy of Data Mining Algorithms
IRJET- Feature Selection and Classifier Accuracy of Data Mining AlgorithmsIRJET- Feature Selection and Classifier Accuracy of Data Mining Algorithms
IRJET- Feature Selection and Classifier Accuracy of Data Mining AlgorithmsIRJET Journal
 
IRJET -Improving the Accuracy of the Heart Disease Prediction using Hybrid Ma...
IRJET -Improving the Accuracy of the Heart Disease Prediction using Hybrid Ma...IRJET -Improving the Accuracy of the Heart Disease Prediction using Hybrid Ma...
IRJET -Improving the Accuracy of the Heart Disease Prediction using Hybrid Ma...IRJET Journal
 
IRJET - Chronic Kidney Disease Prediction using Data Mining and Machine Learning
IRJET - Chronic Kidney Disease Prediction using Data Mining and Machine LearningIRJET - Chronic Kidney Disease Prediction using Data Mining and Machine Learning
IRJET - Chronic Kidney Disease Prediction using Data Mining and Machine LearningIRJET Journal
 
IRJET- Comparison of Feature Selection Methods for Chronic Kidney Data Set us...
IRJET- Comparison of Feature Selection Methods for Chronic Kidney Data Set us...IRJET- Comparison of Feature Selection Methods for Chronic Kidney Data Set us...
IRJET- Comparison of Feature Selection Methods for Chronic Kidney Data Set us...IRJET Journal
 
Survey on data mining techniques in heart disease prediction
Survey on data mining techniques in heart disease predictionSurvey on data mining techniques in heart disease prediction
Survey on data mining techniques in heart disease predictionSivagowry Shathesh
 
MISSING DATA CLASSIFICATION OF CHRONIC KIDNEY DISEASE
MISSING DATA CLASSIFICATION OF CHRONIC KIDNEY DISEASEMISSING DATA CLASSIFICATION OF CHRONIC KIDNEY DISEASE
MISSING DATA CLASSIFICATION OF CHRONIC KIDNEY DISEASEIJDKP
 
IRJET- Heart Failure Risk Prediction using Trained Electronic Health Record
IRJET- Heart Failure Risk Prediction using Trained Electronic Health RecordIRJET- Heart Failure Risk Prediction using Trained Electronic Health Record
IRJET- Heart Failure Risk Prediction using Trained Electronic Health RecordIRJET Journal
 
ICU Patient Deterioration Prediction : A Data-Mining Approach
ICU Patient Deterioration Prediction : A Data-Mining ApproachICU Patient Deterioration Prediction : A Data-Mining Approach
ICU Patient Deterioration Prediction : A Data-Mining Approachcsandit
 
ICU PATIENT DETERIORATION PREDICTION: A DATA-MINING APPROACH
ICU PATIENT DETERIORATION PREDICTION: A DATA-MINING APPROACHICU PATIENT DETERIORATION PREDICTION: A DATA-MINING APPROACH
ICU PATIENT DETERIORATION PREDICTION: A DATA-MINING APPROACHcscpconf
 
Predicting Chronic Kidney Disease using Data Mining Techniques
Predicting Chronic Kidney Disease using Data Mining TechniquesPredicting Chronic Kidney Disease using Data Mining Techniques
Predicting Chronic Kidney Disease using Data Mining Techniquesijtsrd
 
Survey on data mining techniques in heart disease prediction
Survey on data mining techniques in heart disease predictionSurvey on data mining techniques in heart disease prediction
Survey on data mining techniques in heart disease predictionSivagowry Shathesh
 
Design and Development of Prediction of Liver Disease, its Seriousness and Se...
Design and Development of Prediction of Liver Disease, its Seriousness and Se...Design and Development of Prediction of Liver Disease, its Seriousness and Se...
Design and Development of Prediction of Liver Disease, its Seriousness and Se...IRJET Journal
 
Hybrid System of Tiered Multivariate Analysis and Artificial Neural Network f...
Hybrid System of Tiered Multivariate Analysis and Artificial Neural Network f...Hybrid System of Tiered Multivariate Analysis and Artificial Neural Network f...
Hybrid System of Tiered Multivariate Analysis and Artificial Neural Network f...IJECEIAES
 
IRJET- Role of Different Data Mining Techniques for Predicting Heart Disease
IRJET-  	  Role of Different Data Mining Techniques for Predicting Heart DiseaseIRJET-  	  Role of Different Data Mining Techniques for Predicting Heart Disease
IRJET- Role of Different Data Mining Techniques for Predicting Heart DiseaseIRJET Journal
 
DISEASE PREDICTION SYSTEM USING SYMPTOMS
DISEASE PREDICTION SYSTEM USING SYMPTOMSDISEASE PREDICTION SYSTEM USING SYMPTOMS
DISEASE PREDICTION SYSTEM USING SYMPTOMSIRJET Journal
 
Early Identification of Diseases Based on Responsible Attribute using Data Mi...
Early Identification of Diseases Based on Responsible Attribute using Data Mi...Early Identification of Diseases Based on Responsible Attribute using Data Mi...
Early Identification of Diseases Based on Responsible Attribute using Data Mi...IRJET Journal
 

Ähnlich wie Chronic Kidney Disease Prediction (20)

Propose a Enhanced Framework for Prediction of Heart Disease
Propose a Enhanced Framework for Prediction of Heart DiseasePropose a Enhanced Framework for Prediction of Heart Disease
Propose a Enhanced Framework for Prediction of Heart Disease
 
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
 
DATA MINING CLASSIFICATION ALGORITHMS FOR KIDNEY DISEASE PREDICTION
DATA MINING CLASSIFICATION ALGORITHMS FOR KIDNEY DISEASE PREDICTION DATA MINING CLASSIFICATION ALGORITHMS FOR KIDNEY DISEASE PREDICTION
DATA MINING CLASSIFICATION ALGORITHMS FOR KIDNEY DISEASE PREDICTION
 
APPLICATION OF DATA MINING TECHNIQUES FOR THE PREDICTION OF CHRONIC KIDNEY DI...
APPLICATION OF DATA MINING TECHNIQUES FOR THE PREDICTION OF CHRONIC KIDNEY DI...APPLICATION OF DATA MINING TECHNIQUES FOR THE PREDICTION OF CHRONIC KIDNEY DI...
APPLICATION OF DATA MINING TECHNIQUES FOR THE PREDICTION OF CHRONIC KIDNEY DI...
 
IRJET- Feature Selection and Classifier Accuracy of Data Mining Algorithms
IRJET- Feature Selection and Classifier Accuracy of Data Mining AlgorithmsIRJET- Feature Selection and Classifier Accuracy of Data Mining Algorithms
IRJET- Feature Selection and Classifier Accuracy of Data Mining Algorithms
 
IRJET -Improving the Accuracy of the Heart Disease Prediction using Hybrid Ma...
IRJET -Improving the Accuracy of the Heart Disease Prediction using Hybrid Ma...IRJET -Improving the Accuracy of the Heart Disease Prediction using Hybrid Ma...
IRJET -Improving the Accuracy of the Heart Disease Prediction using Hybrid Ma...
 
IRJET - Chronic Kidney Disease Prediction using Data Mining and Machine Learning
IRJET - Chronic Kidney Disease Prediction using Data Mining and Machine LearningIRJET - Chronic Kidney Disease Prediction using Data Mining and Machine Learning
IRJET - Chronic Kidney Disease Prediction using Data Mining and Machine Learning
 
IRJET- Comparison of Feature Selection Methods for Chronic Kidney Data Set us...
IRJET- Comparison of Feature Selection Methods for Chronic Kidney Data Set us...IRJET- Comparison of Feature Selection Methods for Chronic Kidney Data Set us...
IRJET- Comparison of Feature Selection Methods for Chronic Kidney Data Set us...
 
Survey on data mining techniques in heart disease prediction
Survey on data mining techniques in heart disease predictionSurvey on data mining techniques in heart disease prediction
Survey on data mining techniques in heart disease prediction
 
MISSING DATA CLASSIFICATION OF CHRONIC KIDNEY DISEASE
MISSING DATA CLASSIFICATION OF CHRONIC KIDNEY DISEASEMISSING DATA CLASSIFICATION OF CHRONIC KIDNEY DISEASE
MISSING DATA CLASSIFICATION OF CHRONIC KIDNEY DISEASE
 
IRJET- Heart Failure Risk Prediction using Trained Electronic Health Record
IRJET- Heart Failure Risk Prediction using Trained Electronic Health RecordIRJET- Heart Failure Risk Prediction using Trained Electronic Health Record
IRJET- Heart Failure Risk Prediction using Trained Electronic Health Record
 
ICU Patient Deterioration Prediction : A Data-Mining Approach
ICU Patient Deterioration Prediction : A Data-Mining ApproachICU Patient Deterioration Prediction : A Data-Mining Approach
ICU Patient Deterioration Prediction : A Data-Mining Approach
 
ICU PATIENT DETERIORATION PREDICTION: A DATA-MINING APPROACH
ICU PATIENT DETERIORATION PREDICTION: A DATA-MINING APPROACHICU PATIENT DETERIORATION PREDICTION: A DATA-MINING APPROACH
ICU PATIENT DETERIORATION PREDICTION: A DATA-MINING APPROACH
 
Predicting Chronic Kidney Disease using Data Mining Techniques
Predicting Chronic Kidney Disease using Data Mining TechniquesPredicting Chronic Kidney Disease using Data Mining Techniques
Predicting Chronic Kidney Disease using Data Mining Techniques
 
Survey on data mining techniques in heart disease prediction
Survey on data mining techniques in heart disease predictionSurvey on data mining techniques in heart disease prediction
Survey on data mining techniques in heart disease prediction
 
Design and Development of Prediction of Liver Disease, its Seriousness and Se...
Design and Development of Prediction of Liver Disease, its Seriousness and Se...Design and Development of Prediction of Liver Disease, its Seriousness and Se...
Design and Development of Prediction of Liver Disease, its Seriousness and Se...
 
Hybrid System of Tiered Multivariate Analysis and Artificial Neural Network f...
Hybrid System of Tiered Multivariate Analysis and Artificial Neural Network f...Hybrid System of Tiered Multivariate Analysis and Artificial Neural Network f...
Hybrid System of Tiered Multivariate Analysis and Artificial Neural Network f...
 
IRJET- Role of Different Data Mining Techniques for Predicting Heart Disease
IRJET-  	  Role of Different Data Mining Techniques for Predicting Heart DiseaseIRJET-  	  Role of Different Data Mining Techniques for Predicting Heart Disease
IRJET- Role of Different Data Mining Techniques for Predicting Heart Disease
 
DISEASE PREDICTION SYSTEM USING SYMPTOMS
DISEASE PREDICTION SYSTEM USING SYMPTOMSDISEASE PREDICTION SYSTEM USING SYMPTOMS
DISEASE PREDICTION SYSTEM USING SYMPTOMS
 
Early Identification of Diseases Based on Responsible Attribute using Data Mi...
Early Identification of Diseases Based on Responsible Attribute using Data Mi...Early Identification of Diseases Based on Responsible Attribute using Data Mi...
Early Identification of Diseases Based on Responsible Attribute using Data Mi...
 

Mehr von Rajandeep Gill

Graph traversal-BFS & DFS
Graph traversal-BFS & DFSGraph traversal-BFS & DFS
Graph traversal-BFS & DFSRajandeep Gill
 
Asymptotic Notation and Complexity
Asymptotic Notation and ComplexityAsymptotic Notation and Complexity
Asymptotic Notation and ComplexityRajandeep Gill
 
Software Engineering Methodology
Software Engineering MethodologySoftware Engineering Methodology
Software Engineering MethodologyRajandeep Gill
 
Enterprise and Enterprise Application
Enterprise and Enterprise ApplicationEnterprise and Enterprise Application
Enterprise and Enterprise ApplicationRajandeep Gill
 

Mehr von Rajandeep Gill (7)

Graph traversal-BFS & DFS
Graph traversal-BFS & DFSGraph traversal-BFS & DFS
Graph traversal-BFS & DFS
 
4. avl
4. avl4. avl
4. avl
 
Asymptotic Notation and Complexity
Asymptotic Notation and ComplexityAsymptotic Notation and Complexity
Asymptotic Notation and Complexity
 
Operating system quiz
Operating system quizOperating system quiz
Operating system quiz
 
Deadlock
DeadlockDeadlock
Deadlock
 
Software Engineering Methodology
Software Engineering MethodologySoftware Engineering Methodology
Software Engineering Methodology
 
Enterprise and Enterprise Application
Enterprise and Enterprise ApplicationEnterprise and Enterprise Application
Enterprise and Enterprise Application
 

Kürzlich hochgeladen

Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Christo Ananth
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdfKamal Acharya
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfKamal Acharya
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdfankushspencer015
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordAsst.prof M.Gokilavani
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXssuser89054b
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfJiananWang21
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapRishantSharmaFr
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756dollysharma2066
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 
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
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...Call Girls in Nagpur High Profile
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performancesivaprakash250
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringmulugeta48
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...tanu pandey
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Bookingroncy bisnoi
 

Kürzlich hochgeladen (20)

Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
Call for Papers - Educational Administration: Theory and Practice, E-ISSN: 21...
 
University management System project report..pdf
University management System project report..pdfUniversity management System project report..pdf
University management System project report..pdf
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
AKTU Computer Networks notes --- Unit 3.pdf
AKTU Computer Networks notes ---  Unit 3.pdfAKTU Computer Networks notes ---  Unit 3.pdf
AKTU Computer Networks notes --- Unit 3.pdf
 
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete RecordCCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
CCS335 _ Neural Networks and Deep Learning Laboratory_Lab Complete Record
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
FULL ENJOY Call Girls In Mahipalpur Delhi Contact Us 8377877756
 
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
(INDIRA) Call Girl Meerut Call Now 8617697112 Meerut Escorts 24x7
 
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Walvekar Nagar Call Me 7737669865 Budget Friendly No Advance Booking
 
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
 
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar  ≼🔝 Delhi door step de...
Call Now ≽ 9953056974 ≼🔝 Call Girls In New Ashok Nagar ≼🔝 Delhi door step de...
 
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...Booking open Available Pune Call Girls Koregaon Park  6297143586 Call Hot Ind...
Booking open Available Pune Call Girls Koregaon Park 6297143586 Call Hot Ind...
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort ServiceCall Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
Call Girls in Ramesh Nagar Delhi 💯 Call Us 🔝9953056974 🔝 Escort Service
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance BookingCall Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
Call Girls Wakad Call Me 7737669865 Budget Friendly No Advance Booking
 

Chronic Kidney Disease Prediction

  • 1. RajandeepKaur Ph.D Scholar 18803003 Chronic Kidney Disease Prediction with Attribute Reduction using Data Mining Classifiers
  • 2. Content  Introduction  What is Chronic Kidney Disease (CKD)  Data Mining & Classification  Role ofAttribute Selection  LiteratureReview  Dataset Used  PerformanceParameters  Results & Discussion  Conclusion  References
  • 3. Introduction  As the past records show, the number of deaths in India due to chronic kidney disease (CKD) were 5.21 million in 2008 and this number can be further raised to 7.63 million by 2020 [4] .  There is need of detection of the chronic kidney disease at early stage before getting it worse.  To reduce mortality rate, an efficient technique is required to predict and classify it.
  • 4. Need of Study General Problems :  A large space is required for complete dataset  Large computation time  Not providing good Accuracy Aim of study: To predict Chronic Kidney Disease in more accurate and faster way with reduced attributes.
  • 5. What is Chronic Kidney Disease (CKD) Structural or functional abnormalities of the kidneys for >3 months, as manifested by either: 1. Kidney damage, with or without decreased GFR, as defined by  pathologic abnormalities  markers of kidney damage, including abnormalities in the composition of the blood or urine or abnormalities in imaging tests 2. GFR <60 ml/min/1.73 m2, with or without kidney damage; where GFR is Glomerular FiltrationRate.
  • 6. CKD death Stages in Progression of Chronic Kidney Disease and Therapeutic Strategies Complications Screening for CKD risk factors CKD risk reduction; Screening for CKD Diagnosis & treatment; Treat comorbid conditions; Slow progression Estimate progression; Treat complications; Prepare for replacement Replacement by dialysis & transplant Normal Increased risk Kidney failure Damage  GFR
  • 7. Data Mining & Classification  Data mining refers to extracting meaningful information from hidden patterns of dataset [2].  The data mining techniques are very useful in health informatics [16, 17].  Data mining classification techniques play a vital role in classifying various diseases from symptoms and various medical tests.
  • 8. Attribute Selection  Before inducing a model we almost always do input engineering  The most useful part of this is attribute selection (also called feature selection)  Select relevantattributes  Remove redundantand/or irrelevantattributes  Select the most “relevant” subset of attributes according to some selection criteria. Why?
  • 9. Reasons for Attribute Selection  Simpler model  Moretransparent  Easier to interpret  Faster model induction  Structural knowledge  Knowing which attributes are important may be inherently important to the application  Reduce storage requirement What about the accuracy?
  • 10. Attribute Selection Contd…  Attribute Selection can be done by following two methods:  Filter  Wrapper
  • 11. Filter Method  Results in either Ranked list of attributes  Typical when each attribute is evaluated individually  Must select how many to keep A selected subset of attributes  Forward selection  Best first  Random search such as genetic algorithm
  • 12. Wrapper Method  “Wrap around” the learning algorithm  Always evaluate subsets  Return the best subset of attributes  Use same search methods as before  Wrapper approach is generally more accurate but also more computationally expensive
  • 13. Literature Review Researcher Year Classifier Accuracy Remarks K.R. Lakshmi [6] 2014 ANN 93.8521% Performed better than Decision Tree and Logical regressionclassifiers Naganna Chetty [7] 2015 NaïveBayes, SMO,IBK 99%,98.25%, 100% Attribute Reduction using Wrapper Method S.Vijayarani [8] 2015 SVM 76.32%. 584 instances and six attributes L.Jerlin Rubini [9] 2015 Multilayer Preceptor 99.75% Performed better than radial basis function network, logistic regression Uma N Dulhare [10] 2016 NaïveBayes 97.5% Attribute Reduction using OneR HuseyinPolat [11] 2017 SVM 98.5%. Attribute Reduction WalaA. [12] 2017 Decisiontree 99% Missing Values are replaced withmean
  • 14. DataSet Used chronic_kidney_disease from UCI machine learning repository Thedataset contains: •400 instances •25 attributes  14 are nominal 11 are numeric
  • 15. PERFORMANCE ANALYSIS PARAMETERS  Accuracy  Precision  Recall  RMSE (Root Mean Square Error)  MAE (MeanAbsolute Error)  ExecutionTime  Kappa Statistics  ROC(Receiver Operating Characteristics)
  • 16. RESULT AND DISCUSSION  Tool  WEKA 3.8 (The Waikato Environment for Knowledge Analysis)  Classifier  J48,DecisionTable and IBK  AttributeSelection  CfsSubsetEval,ClassifierSubsetEval,and WrapperSubsetEval  SearchingTechnique  Greedy and Bestfit Search Approach
  • 17. RESULT OF J48, DECISION TABLE AND IBK CLASSIFIERS ON CKD Algorithm Accuracy Precision Recall Kappa Statistics Execution Time RMSE J48 99% 0.990 0.990 0.9786 0.13 0.0807 DecisionTable 99% 0.990 0.990 0.9786 0.46 0.2507 IBK 95.75% 0.962 0.958 0.9113 0.01 0.2056 General Observations: •J48 and Decision table provide 99% accuracy •J48 provides least RMSE value •IBK takes least time to execute
  • 18. Attribute Reduction Classifier Attribute Selection Method Attributes in Original Dataset No. of reduced Attributes Attribute Reduction (in %) J48 CFSSubsetEval+ Greedy Stepwise 25 17 32 ClassifierSubsetEval+Greedy Stepwise 25 4 84 WrapperSubsetEval+Best Fit 25 13 48 Decision Table CFSSubsetEval+ Greedy Stepwise 25 17 32 ClassifierSubsetEval+Greedy Stepwise 25 4 84 WrapperSubsetEval+Best Fit 25 7 72 IBK CFSSubsetEval+ Greedy Stepwise 25 17 32 ClassifierSubsetEval+Greedy Stepwise 25 5 80 WrapperSubsetEval+Best Fit 25 7 72
  • 19. Accuracy of Reduced Dataset Classifier Attribute Selection Method Attribute Reduction (in %) Accuracy without Reduction Accuracy with Reduction J48 CFSSubsetEval+ Greedy Stepwise 32 99 99 ClassifierSubsetEval+Greedy Stepwise 84 99 98.25 WrapperSubsetEval+Best Fit 48 99 99 Decision Table CFSSubsetEval+ Greedy Stepwise 32 99 98.75 ClassifierSubsetEval+Greedy Stepwise 84 99 99.25 WrapperSubsetEval+Best Fit 72 99 99 IBK CFSSubsetEval+ Greedy Stepwise 32 95.75 98 ClassifierSubsetEval+Greedy Stepwise 80 95.75 99.75 WrapperSubsetEval+Best Fit 72 95.75 100
  • 20. Comparison of Accuracy for J48, Decision Table and IBK Classifier with original and reduced dataset
  • 21. CONCLUSION  The accuracy of IBK for original dataset is 95.75%  While with 72% reduced dataset, it provides 100% accuracy using WrapperSubsetEval attribute evaluator with bestfirst search.  J48 and Decision Table provides better results than IBK for originaldataset  While IBK performed better with reduced dataset than originaldataset.  IBK can be used to predict CKD in efficient and fast way with reduced attributes.
  • 22. References [1] L. Jena, and N. Ku. Kamila, "Distributed data mining classification algorithms for prediction of chronic- kidney-disease," International Journal of Emerging Research in Management &Technology, vol-4, Issue- 11, pp: 110-118, November 2015. [2] K. Chandel, V. Kunwar, S. Sabitha, T. Choudhury, and S. Mukherjee, “A comparative study on thyroid disease detection using K-nearest neighbor and Naive Bayes classification techniques, CSI transactions on ICT, 4(2-4), pp: 313-319, 2016. [3] Sudhir B. Jagtap, "Census data mining and data analysis using WEKA," arXiv preprint arXiv:1310.4647, 2013. [4] S.Dilli Arasu, R.Thirumalaiselvi, “Review of Chronic Kidney Disease based on Data Mining Techniques,” International Journal ofApplied Engineering Research, vol-12, pp: 13498-13505, 2017. [5] S. Zeynu, Shruti Patil, “Survey on Prediction of Chronic Kidney Disease Using Data Mining Classification Techniques and Feature Selection,” International Journal of Pure and Applied Mathematics, vol-118, No. 8,pp:149-156, 2018. [6] K. R. Lakshmi, Y. Nagesh, and M. Veera Krishna, "Performance comparison of three data mining techniques for predicting kidney dialysis survivability," International Journal of Advances in Engineering & Technology, vol. 7, pp: 242-254, 2014. [7] N. Chetty, Kunwar Singh Vaisla, and Sithu D. Sudarsan, “Role of attributes selection in classification of Chronic Kidney Disease patients,” Computing, Communication and Security (ICCCS), International Conference on. IEEE, 2015.
  • 23. References [8] S. Vijayarani, and S. Dhayanand, "Data mining classification algorithms for kidney disease prediction,"International Journal on Cybernetics and Informatics (IJCI) , 2015. [9] L. Jerlin Rubini and Dr. P. Eswaran, “Generating comparative analysis of early stage prediction of Chronic Kidney Disease,” International Journal of Modern Engineering Research (IJMER), Volume 5, Issue 7, pp 49-55, July2015. [10] Uma N. Dulhare, and Mohammad Ayesha, “Extraction of action rules for chronic kidney disease using Naïve bayes classifier,” Computational Intelligence and Computing Research (ICCIC), IEEE International Conference on IEEE, 2016. [11] H. Polat, Homay Danaei Mehr, and Aydin Cetin, “Diagnosis of chronic kidney disease based on support vector machine by feature selection methods,” Journal of medical systems, Feb 2017. [12] W. Abedalkhader, and Noora Abdulrahman, “Missing Data Classification Of Chronic Kidney Disease,” International Journal of Data Mining & Knowledge Management Process (IJDKP) Vol.7, No.5/6, November 2017. [13] Abeer Y. Al-Hyari, “Chronic Kidney Disease Prediction System UsingClassifying Data Mining Techniques,” Library of university of Jordan, 2012. [14 Jiliang Tang, Salem Alelyani, and Huan Liu, “Feature selection for classification: A review,” Data classification:Algorithms and applications, 2014.
  • 24. References [15] Geoffrey Holmes, Andrew Donkin, and Ian H. Witten, “Weka: A machine learning workbench,” Intelligent Information Systems, 1994. Proceedings of the 1994 Second Australian and New Zealand Conference on. IEEE, 1994. [16] Mary K. Obenshain, “Application of data mining techniques to healthcare data,” Infection Control & Hospital Epidemiology25.8, pp: 690-695, 2004. [17] Cheng, Li-Chen, Ya-Han Hu, and Shr-Han Chiou, “Applying the Temporal Abstraction Technique to the Predictionof Chronic Kidney Disease Progression,” Journal of medical systems 41, April 2017. [18] Neeraj Bhargava, Girja Sharma, Ritu Bhargava, and Manish Mathuria, “Decision tree analysis on J48 algorithm for data mining,” Proceedings of International Journal of Advanced Research in Computer Scienceand Software Engineering, Vol. 3, pp:1114-1119, June 2013. [19] Hongjun Lu, and Hongyan Liu, “Decision tables: Scalable classification exploring RDBMS capabilities,”Proceedings of the 26th International Conference onVery Large Data Bases,VLDB'00. 2000.