Source-linked AI summary

Diagnosis of diabetes using classification mining techniques

Aiswarya Iyer, S. Jeyalatha, Ronak Sumbaly

arXiv:1502.03774v1cs.CE

TL;DR

The paper addresses the need for faster, reliable diabetes diagnosis, especially for pregnant women, using documented patient data. It applies Decision Tree and Naïve Bayes classification models and reports that the proposed models are adequate and effective for diabetes diagnosis. The paper concludes that the approach supports modeling diabetes diagnosis for local and systematic treatment.

  • Problem

    The paper addresses the need for reliable, faster, and cost-effective diabetes prediction because existing analytical approaches are generally time-consuming and lack a probability-based classification model with feature selection.

  • Method

    The study applies Decision Tree and Naïve Bayes classification models to a pre-existing dataset of diabetes cases recorded in pregnant women.

  • Results

    Experimental results demonstrate the effectiveness and adequacy of the proposed Decision Tree and Naïve Bayes models for the diabetes-diagnosis problem.

  • Takeaways & Limitations

    The paper presents these models as tools for automatic diabetes diagnosis and for supporting local and systematic treatment.

  • Takeaways & Limitations

    The authors state that a more precise and general predictive model will require information from different locales and later time periods, including additional prognostic factors.

Abstract

from arXiv · show

Diabetes has affected over 246 million people worldwide with a majority of them being women. According to the WHO report, by 2025 this number is expected to rise to over 380 million. The disease has been named the fifth deadliest disease in the United States with no imminent cure in sight. With the rise of information technology and its continued advent into the medical and healthcare sector, the cases of diabetes as well as their symptoms are well documented. This paper aims at finding solutions to diagnose the disease by analyzing the patterns found in the data through classification analysis by employing Decision Tree and Naïve Bayes algorithms. The research hopes to propose a quicker and more efficient technique of diagnosing the disease, leading to timely treatment of the patients.

1. INTRODUCTION

The paper addresses diabetes diagnosis in pregnant women by applying classification-based data mining to hospital records, with the goal of supporting earlier detection and treatment.

  • Scope: Diabetes is restricted in this paper to cases recorded in pregnant women, whose disease can affect both mothers and unborn children.Reported complications include strokes, miscarriages, blindness, kidney failure, and amputations.
  • Motivation: Hospitals collect large amounts of patient-record data that can support predictive knowledge discovery through data-mining algorithms.The paper presents data mining as an analysis technique for proposing inferences and supporting decision-making.
  • Motivation: Early diabetes diagnosis is important because earlier detection and treatment may help avoid disease complications.The motivation links medical diagnosis with the potential to support treatment for women at an early stage.
  • Approach: The study employs Decision Tree and Naïve Bayes algorithms on a pre-existing dataset to predict whether diabetes is recorded for a patient.Results from the two algorithms are compared and presented.

2. OBJECTIVES

The paper aims to develop diabetes-prediction models for pregnant women while summarizing diabetes and discussing data mining’s societal benefits and applications.

  • Model development: The primary objective is to present Decision Tree and Naïve Bayes models for predicting diabetes in pregnant women.
  • Diabetes overview: The paper also summarizes diabetes types, risk factors, symptoms, and diagnosis.
  • Applications: A further objective is to identify and discuss data mining’s benefits to society and effective applications.

3. ACRONYMS

The paper uses acronyms for optimization, neural-network, data-format, glucose-testing, genetic, and information-gain concepts.

  • Optimization and neural networks: ACO denotes Ant Colony Optimization, while ANN denotes Artificial Neural Network.
  • Data and glucose testing: CSV denotes Comma Separated Values, and FPG denotes Fasting Plasma Glucose.
  • Algorithms and testing: GA denotes Genetic Algorithm, IG denotes Information Gain, and OGTT denotes Oral Glucose Tolerance Test.

4. OVERVIEW OF DIABETES

Diabetes involves inadequate insulin production or use, leading to high blood glucose, and includes Type 1, Type 2, and gestational forms. The overview describes symptoms, diagnostic tests, complications, and the importance of early detection.

  • Definition: Diabetes occurs when insulin production is inadequate or the body cannot use insulin properly, resulting in high blood glucose.
  • Types: The paper identifies Type 1, Type 2, and gestational diabetes as the three main types.
  • Type 1 diabetes: Type 1 is an autoimmune disease involving destruction of insulin-producing pancreatic cells and typically begins below age 20.
  • Type 2 diabetes: Type 2 involves insulin resistance, accounts for almost 90% of diabetes cases, and is associated with obesity, inactivity, and ageing.
  • Gestational diabetes: Gestational diabetes occurs in pregnant women when the pancreas does not produce sufficient insulin, and untreated cases can cause childbirth complications.
  • Symptoms: Common symptoms include frequent urination, excessive hunger, excessive thirst, unusual weight change, slow wound healing, blurred vision, fatigue, and itchy skin.
  • Diagnosis: Diabetes detection commonly uses A1C, FPG, and OGTT tests, alongside urine and blood tests for excess glucose.
  • Early detection: Earlier diagnosis may help avoid complications, motivating the paper’s faster diabetes-prediction method.

5. RELATED WORK

Prior diabetes-prediction research largely used clustering and neural-network approaches, while the paper identifies a gap in probabilistic classification with feature selection and seeks faster analysis.

  • Most existing diabetes-prediction models were based on clustering algorithms and artificial neural networks.
  • Earlier studies applied clustering, fuzzy optimization, and neural networks to classify patients, discover dataset knowledge, or derive diagnostic rules.
  • The authors state that prior work had not established a classification model based on probability and feature selection.
  • Prior analytical methods generally required substantial time because many used a weighted approach.
  • The proposed analysis uses Naïve Bayes and Decision Tree approaches and evaluates models by the percentage of correctly classified dataset instances.

6. OVERVIEW OF METHODOLOGIES

The paper proposes a simpler diabetes-diagnosis mining model using two classification algorithms: J48 Decision Tree and Naïve Bayes.

  • The work aims to create a simpler diabetes-diagnosis solution for women using two classification algorithms.
  • 6.1. Decision Trees: A decision tree represents classification and prediction as a flowchart whose nodes test attributes and whose leaves denote class variables.
  • 6.1. Decision Trees: The J48 model selects each decision-tree node by choosing the attribute with the highest information gain.
  • 6.2. Naïve Bayes: Naïve Bayes is a probabilistic algorithm that proceeds through classification, estimation, and prediction.
  • 6.2. Naïve Bayes: The Naïve Bayes approach is presented through a formula for analyzing relations among diseases, symptoms, and medications.

7. METHODOLOGIES

The study applies Decision Tree and Naïve Bayes classification to the Pima Indians Diabetes Database to predict diabetes in women. The dataset is pre-processed, feature-selected, normalized, and evaluated through cross-validation and percentage-split model creation.

  • The analysis uses the Pima Indians Diabetes Database to determine diabetes status in women with Decision Tree and Naïve Bayes classifiers.
  • Dataset Description and Pre-Processing: Missing values are replaced and dataset values are normalized to a 0-to-1 range using WEKA tools.Normalization restricts variable ranges from 0 to 1.
  • Dataset Description and Pre-Processing: Feature selection using CfsSubsetEval retains plasma glucose, body mass index, diabetes pedigree function, age, and the nominal class variable.
  • Proposed Data Model: J48 and Naïve Bayes models are created using cross-validation and percentage-split techniques.The paper states that both training-test division approaches are applied for model creation.
  • Proposed Data Model: The workflow pre-processes the CSV dataset, performs feature selection, uploads it to WEKA, and evaluates correctly classified instances.J48 produces tested-positive or tested-negative outputs, while Naïve Bayes produces prediction results.

8. RESULTS AND ANALYSIS

The results compare J48 decision-tree and Naïve Bayes diabetes classifiers under cross-validation and percentage-split evaluations. The authors report small differences in error rates, with Naïve Bayes using a 70:30 split achieving the least error rate among the compared implementations.

  • J48 Decision Tree: J48 generates a pruned decision tree using normalized information gain to select split attributes and classify patients as diabetes-positive or diabetes-negative.The highest normalized information gain is selected at each split until classifying leaf nodes are created.
  • J48 Decision Tree: 230 instances were used as the test dataset under the 70:30 percentage split, while the remaining instances were used for training the J48 model.
  • Naïve Bayes: Naïve Bayes was evaluated only with the 70:30 percentage split, with results reported through correctness measures, additional metrics, and a confusion matrix.
  • Analysis: Naïve Bayes using the 70:30 percentage split achieved the least error rate among the compared implementations, although the methods had comparatively small error-rate differences.The comparison includes two J48 implementations and the Naïve Bayes percentage-split model.

9. CONCLUSIONS

The paper presents Decision Trees and Naïve Bayes for automatic diabetes diagnosis and reports adequate experimental performance. Future work targets broader data collection and more precise, general models.

  • Decision Trees and Naïve Bayes were used to model automatic diabetes diagnosis.The paper investigates these techniques for local and systematic treatment.
  • Experimental results demonstrate the adequacy of the proposed model.
  • Future work plans to collect information from different world locales to develop a more precise and general predictive model.
  • Planned extensions include using later-period information, identifying new prognostic elements, and improving diabetes-analysis automation.

AUTHORS

The paper lists three authors affiliated with the Computer Science department at BITS Pilani in Dubai, UAE.

  • Ms. Aiswarya Iyer is pursuing a B.E. (Hons) in Computer Science at BITS Pilani in Dubai, UAE.
  • Dr. S Jeyalatha is a Senior Lecturer in Computer Science at BITS Pilani in Dubai, UAE.
  • Mr. Ronak Sumbaly is pursuing a B.E. (Hons) in Computer Science at BITS Pilani in Dubai, UAE.
Loading 1502.03774v1…