SlideShare a Scribd company logo
1 of 5
Download to read offline
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 77
Heart Disease Prediction Using Machine Learning Techniques
Sai Bhavan Gubbala
1Student, Department of Computer Science and Engineering, Sathyabama Institute of Science and Technology
---------------------------------------------------------------------***---------------------------------------------------------------------
Abstract - cardiovascular diseases are responsible for the
majority of deaths globally. In most situations, thecertainty of
heart disease is known, but it may be anticipated early
utilizing various machine learning methods. A proper
diagnosis of heart patients can be made based on variables
that are readily apparent. Age, diabetes, hypertension,
cholesterol, obesity, and physical activity are a few of the
contributing variables. In this study we are going to find an
algorithm which predicts accurately. The dataset contains 14
attributes/features and 270 instances, out of which 150 have
heart disease and 120 are considered to be normal. The data
seems to be complete with no null values so we are going to
use supervised machine learning models. To find out the best
model we are going to compare five machine learning
algorithms such as Random Forest classification, Support
Vector Machine, AdaBoost Classifier, Logistic Regression and
Decision Tree Classifier. The goal of this paper is to do
comparative research on machine learning algorithms
accuracy. This research is going to be developed further for
best accuracy model prediction.
Key Words: Random Forest Classification, AdaBoost
Classifier, Logistic Regression, Decision Tree Classifier,
Support Vector Machine, Algorithm, Instances.
1.INTRODUCTION
According to the World Health Organization, every year 15
million deaths occur worldwide due to heart disease. The
load of cardiovascular disease is rapidly increasing all over
the world from the past few years. Many researches have
been conducted in attempt to pinpoint the most influential
factors of heart disease as well as accurately predict the
overall risk. Heart Disease is even highlighted as a silent
killer which leads to the death of the personwithoutobvious
symptoms. The early diagnosis of heart disease plays a vital
role in making decisions on lifestyle changes in high-risk
patients and in turn reduce thecomplications. Inthisproject,
we have developed and researched about models for heart
disease prediction through the various heart attributes of
patient and detect impending heart disease using Machine
learning techniques on the dataset available in the UCI
repository, further evaluating the results using confusion
matrix and cross validation. The author had used various
machine learning techniques to predict the accuracy of test
model such as Random Forest, Support Vector Machine,
AdaBoost Classifier and we have clean dataset which can be
readily used without cleaning or modifying the dataset.
2. LITERATURE OVERVIEW
There any many research works done on heart disease
diagnosis by various factors. In this study, we are going to do
a comparative analysis of different classification and
regression algorithms and the results revealed that RF had
obtained an higher accuracywhichisthehighestamongstthe
other algorithms. Authors had proposed a Random Forest
Classification forHeart disease PredictionbyintegratingPCA
and Cluster techniques. This study provided a significant
contribution in computing strength scores with compelling
predictors in heart disease prediction. Compared to five
machine learning algorithms-Support Vector Machine,
Decision Trees, Random Forest, AdaBoost Classifier and
Logistic Regression-to predict heart disease. Among these
algorithms, Random Forest gives the best accuracy, at
85.22% compared to other algorithms. Thesystemevaluates
all the parameters using the training and testing technique.
The dataset is evaluated in python coding language. The
coding language is then further processed in a Jupyter
notebook which evaluates the process by a step-by-step
manner. Different types of training and testing phases were
implemented. In the end, the best pair of testing and training
were selected and used in the process for achieving the
highest accuracy.
3. DATASET INFORMATION
The dataset is collected from an online resource also known
as the UCI repository. These days, the data is available every
day and it is best to implement the model on a dataset which
is available from a reliable resource. The dataset contains
various attributes/featuressuchasage,gender,fastingblood
sugar, serum cholesterol, chest pain type, resting
electrocardiographic results, exercise induced angina, ST
depression, slope of peak exercise, resting blood pressure,
number of major vessels,thalassemia andtarget. Thedataset
contains 270 instances with 14 attributes. The Table 1 gives
us idea about how the dataset is implemented by numerical
values. Figure 1 presents us a general overview of the
dataset by indicating that 44% of patients are not diagnosed
with heart disease and 56% of patientssuffercardiovascular
disease.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 78
Table - 1: Dataset Attributes
Fig - 1: Percentage of Heart Disease
3.1 DATASET PREPROCESSING
Data correlation, null value verification, loading python
libraries, and partitioning the dataset into training and test
portions are all steps in the preprocessing of the dataset.
Preprocessing provides insight into how the characteristics
of the data are influencing the data. Individual elements in
the below correlation, testing, and training data are directly
predictive of heart disease illness. People with heart disease
are shown in Figure 2 along with their link to other relevant
variables. The primary factor impacting heart disease has
been found as the highest heart rate attained. Finally, Figure
3 provides us with a comprehensive connection of all
features, which helps us identify the causes of heart disease.
This understanding is exceptional because it distinguishes
between big and small elements in regard to the goal value
and is extremely helpful even when there is a link between
them.
Fig -2: Attributes in respect to heart disease patients
Attributes Description
Age Age in years
Sex Male-1, female-0
Chest Pain Typical angina-0,
Atypical angina-1,
non-anginal pain-2,
Asymptomatic-3
Resting Blood
Pressure
94-200 mm in Hg
Cholesterol 126-524 mg/dl
Fasting Blood Sugar True-1, False-0
Resting
Electrocardiographic
Normal-0,ST-Twaveabnoramility-1,
Left ventricular hypertrophy-2
Maximum Heart 71-202 heart rate
Exercise Induced
Angina
Yes-1, No-0
ST Depression 0-6.2 values
Slope of peak exercise
ST segment
Upsloping-0, flat-1, downslopping-2
Number of major
vessels
0-3 values
Thalassemia 0-normal,1-fixeddefect,2-reversable
defect
Heart disease (Target) No-1, Yes-2
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 79
Fig – 3: Correlation of data
4. SPLITTING DATA INTO TESTING AND TRAINING
The training phase retrieves thecharacteristicsfromthedata
while the testing proceduredetermines themodelbehaviour
for prediction. While the testing phase uses dependent
factors, the training phase uses independentvariables.There
are many portions of the data. These are the steps of testing
and training. 90% of the dataset is used for training, while
10% is used fortesting. We considertherandomstatetobe1.
To decidehow the data will be splitintotrainandtestindices,
we use the random state parameter. We can be certain that
the method will always generate the same set of random
integers if we set the random state to a constant value. The
algorithms are already set up in a Jupyter notebook.
FIG - 4: Splitting data
5. METHODOLOGY
There are several sorts of algorithms, some of which differ
from one another while others are similar; nonetheless, we
now use all of these algorithms to compare their accuracy so
that the one with the best accuracy may be chosen for
improved predictability.
5.1 RANDOM FOREST CLASSIFIER
A large number of decision trees are built during the training
phase of the random forests or random decision forests
ensemble learning approach. It can used to solve for
regression or classification problems. The Random Forest
Classifier algorithm is used and its test accuracy was 85.22
percent.
5.2 DECISION TREE
Decision Tree is a structured classifier where internal nodes
stand in for a dataset’s features, branches for the decision-
making process, and each leaf node for the classification
result. It has two nodes such as Decision nodeand Leaf node.
The test accuracy was 74.34 percent.
5.3 SUPPORT VECTOR MACHINE
Support Vector Machines implement nonlinear class
boundaries using a linear model. The target classes are
separated using support vectors.BeforetrainingalinearSVM
model to classify the data in a higher-dimensional feature
space to deal with a nonlinear condition, the model
transforms the input using a mapping function. The test
accuracy was 67.43 percent.
5.4 ADABOOST CLASSIFIER
An AdaBoost classifier is a meta-estimator that first fits a
classifier on the original dataset, then fitsadditionalcopiesof
the classifier on the same dataset with the weights of
instances that were incorrectly classified being changed so
that subsequent classifiers concentrate more on challenging
cases. The test accuracy was 78.59 percent.
5.5 LOGISTIC REGRESSION
Logistic Regression is also known as Analytical modelling
technique. It is utilized to analyze datasets with one or more
independent factors that affect the outcome. A random state
of 0 was imported again for logistic regression. The training
model was then fitted. The test’saccuracy was81.23percent.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 80
6. FLOWCHART OF DIAGRAM
Fig -4: Flowchart of Research
The flowchart explains how the dataset is utilized while
developing a prediction model. Understanding this study
report requires understanding this flow chart.
7. RESULTS
According to the table, Random Forest has the best accuracy
of all the classifiers, at 85.22 percent. Python was used to
train the models, split the dataset into training and test data,
and measurehow accurate they were. Below is acomparison
of the algorithms' results, along with a table listing their
accuracy percentages.
Sl. No. Algorithms Accuracy
1. Random Forest Classifier 85.22%
2. Logistic Regression 81.23%
3. AdaBoost Classifier 78.59%
4. Decision Tree 74.34%
5. Support Vector Machine 67.43%
Table -2: Performance evaluation of algorithms
Fig – 5: Random Forest Accuracy
8. CONCLUSIONS
Therefore, we have finalized that Random Forest Classifier
has attained the highest level of accuracy, asindicatedbythe
numerical figures. Although Logistic Regression, AdaBoost
Classifier, Decision Tree, and SupportVectorMachineall had
accuracy levels greater than 50%, they underperformed
Random Forest. When compared to the other methods
discussed, it can be reasoned that the random forest
approach may also attain superior accuracy.
9.FUTURE SCOPE
Additionally, researchers may contrast this research’s
hierarchy levels to those from other datasets and draw
interesting conclusions. The authors' intendedstudywill aid
in the creation of more accurate, reliable, and productive
methods for predicting sickness, which will benefit not just
the medical community but also numerousothergroupsand
individuals throughout the globe.
REFERENCES
[1] Pouriyeh S, Vahid S, Sannino G, De Pietro G, Arabnia H,
Gutierrez J. A comprehensive investigation and
comparison of machine learning techniques in the
domain of heart disease. In: 2017 IEEE symposium on
computers and communications (ISCC). IEEE. p. 204–
207.
[2] https://archive.ics.uci.edu/ml/datasets/statlog+(heart).
[3] "Prediction of Heart Disease using Machine Learning
Algorithms" Krishnan J Santhana and S Geetha ICIICT
|Year :2019| Conference Paper | Publisher: IEEE
[4] Bouali H, Akaichi J. Comparative study of different
classification techniques: heart disease use case. In:
2014 13th international conferenceonmachinelearning
and applications. IEEE. p. 482–86.
[5] World Health Organization.
http://www.who.int/cardiovascular diseases/en.
2019.I.S. Jacobs and C.P. Bean, “Fine particles, thin films
and exchange anisotropy,” in Magnetism, vol. III, G.T.
International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056
Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072
© 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 81
Rado and H. Suhl, Eds. New York: Academic, 1963, pp.
271-350.
[6] Chauhan R, Bajaj P, Choudhary K, Gigras Y. Framework
to predict health diseases using attribute selection
mechanism. In: 2015 2nd international conference on
computing for sustainable global development
(INDIACom). IEEE. p. 1880–84.
[7] "Effective Heart Disease Prediction Using Hybrid
Machine Learning Techniques" Senthil Kumar, Mohan
Chandrasegar Thirumalai and Gautam Srivastva |Year
:2019| Conference Paper | Publisher: IEEE.

More Related Content

Similar to Heart Disease Prediction Using Machine Learning Techniques

Heart Disease Prediction using Data Mining
Heart Disease Prediction using Data MiningHeart Disease Prediction using Data Mining
Heart Disease Prediction using Data MiningIRJET Journal
 
Prediction of Heart Disease Using Data Mining Techniques- A Review
Prediction of Heart Disease Using Data Mining Techniques- A ReviewPrediction of Heart Disease Using Data Mining Techniques- A Review
Prediction of Heart Disease Using Data Mining Techniques- A ReviewIRJET Journal
 
IRJET- Predicting Heart Disease using Machine Learning Algorithm
IRJET- Predicting Heart Disease using Machine Learning AlgorithmIRJET- Predicting Heart Disease using Machine Learning Algorithm
IRJET- Predicting Heart Disease using Machine Learning AlgorithmIRJET Journal
 
Heart disease classification using Random Forest
Heart disease classification using Random ForestHeart disease classification using Random Forest
Heart disease classification using Random ForestIRJET Journal
 
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
 
Heart Disease Prediction using Machine Learning Algorithms
Heart Disease Prediction using Machine Learning AlgorithmsHeart Disease Prediction using Machine Learning Algorithms
Heart Disease Prediction using Machine Learning AlgorithmsIRJET Journal
 
IRJET- Develop Futuristic Prediction Regarding Details of Health System for H...
IRJET- Develop Futuristic Prediction Regarding Details of Health System for H...IRJET- Develop Futuristic Prediction Regarding Details of Health System for H...
IRJET- Develop Futuristic Prediction Regarding Details of Health System for H...IRJET Journal
 
Comparative Analysis of Heart Disease Prediction Models: Unveiling the Most A...
Comparative Analysis of Heart Disease Prediction Models: Unveiling the Most A...Comparative Analysis of Heart Disease Prediction Models: Unveiling the Most A...
Comparative Analysis of Heart Disease Prediction Models: Unveiling the Most A...IRJET Journal
 
Genetically Optimized Neural Network for Heart Disease Classification
Genetically Optimized Neural Network for Heart Disease ClassificationGenetically Optimized Neural Network for Heart Disease Classification
Genetically Optimized Neural Network for Heart Disease ClassificationIRJET Journal
 
IRJET- Prediction and Analysis of Heart Disease using SVM Algorithm
IRJET-  	  Prediction and Analysis of Heart Disease using SVM AlgorithmIRJET-  	  Prediction and Analysis of Heart Disease using SVM Algorithm
IRJET- Prediction and Analysis of Heart Disease using SVM AlgorithmIRJET Journal
 
A Comparative Analysis of Heart Disease Prediction System Using Machine Learn...
A Comparative Analysis of Heart Disease Prediction System Using Machine Learn...A Comparative Analysis of Heart Disease Prediction System Using Machine Learn...
A Comparative Analysis of Heart Disease Prediction System Using Machine Learn...IRJET Journal
 
predictionofheartdiseaseusingmachinelearning.pdf
predictionofheartdiseaseusingmachinelearning.pdfpredictionofheartdiseaseusingmachinelearning.pdf
predictionofheartdiseaseusingmachinelearning.pdfDasariSeshadri
 
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
 
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
 
Heart Disease Prediction Using Multi Feature and Hybrid Approach
Heart Disease Prediction Using Multi Feature and Hybrid ApproachHeart Disease Prediction Using Multi Feature and Hybrid Approach
Heart Disease Prediction Using Multi Feature and Hybrid ApproachIRJET Journal
 
IRJET- A System to Detect Heart Failure using Deep Learning Techniques
IRJET- A System to Detect Heart Failure using Deep Learning TechniquesIRJET- A System to Detect Heart Failure using Deep Learning Techniques
IRJET- A System to Detect Heart Failure using Deep Learning TechniquesIRJET Journal
 
Prediction of heart disease using neural network
Prediction of heart disease using neural networkPrediction of heart disease using neural network
Prediction of heart disease using neural networkIRJET Journal
 
PREDICTION OF HEART DISEASE USING LOGISTIC REGRESSION
PREDICTION OF HEART DISEASE USING LOGISTIC REGRESSIONPREDICTION OF HEART DISEASE USING LOGISTIC REGRESSION
PREDICTION OF HEART DISEASE USING LOGISTIC REGRESSIONIRJET Journal
 

Similar to Heart Disease Prediction Using Machine Learning Techniques (20)

Heart Disease Prediction using Data Mining
Heart Disease Prediction using Data MiningHeart Disease Prediction using Data Mining
Heart Disease Prediction using Data Mining
 
Prediction of Heart Disease Using Data Mining Techniques- A Review
Prediction of Heart Disease Using Data Mining Techniques- A ReviewPrediction of Heart Disease Using Data Mining Techniques- A Review
Prediction of Heart Disease Using Data Mining Techniques- A Review
 
IRJET- Predicting Heart Disease using Machine Learning Algorithm
IRJET- Predicting Heart Disease using Machine Learning AlgorithmIRJET- Predicting Heart Disease using Machine Learning Algorithm
IRJET- Predicting Heart Disease using Machine Learning Algorithm
 
Heart disease classification using Random Forest
Heart disease classification using Random ForestHeart disease classification using Random Forest
Heart disease classification using Random Forest
 
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
 
Heart Disease Prediction using Machine Learning Algorithms
Heart Disease Prediction using Machine Learning AlgorithmsHeart Disease Prediction using Machine Learning Algorithms
Heart Disease Prediction using Machine Learning Algorithms
 
IRJET- Develop Futuristic Prediction Regarding Details of Health System for H...
IRJET- Develop Futuristic Prediction Regarding Details of Health System for H...IRJET- Develop Futuristic Prediction Regarding Details of Health System for H...
IRJET- Develop Futuristic Prediction Regarding Details of Health System for H...
 
Comparative Analysis of Heart Disease Prediction Models: Unveiling the Most A...
Comparative Analysis of Heart Disease Prediction Models: Unveiling the Most A...Comparative Analysis of Heart Disease Prediction Models: Unveiling the Most A...
Comparative Analysis of Heart Disease Prediction Models: Unveiling the Most A...
 
Genetically Optimized Neural Network for Heart Disease Classification
Genetically Optimized Neural Network for Heart Disease ClassificationGenetically Optimized Neural Network for Heart Disease Classification
Genetically Optimized Neural Network for Heart Disease Classification
 
IRJET- Prediction and Analysis of Heart Disease using SVM Algorithm
IRJET-  	  Prediction and Analysis of Heart Disease using SVM AlgorithmIRJET-  	  Prediction and Analysis of Heart Disease using SVM Algorithm
IRJET- Prediction and Analysis of Heart Disease using SVM Algorithm
 
A Comparative Analysis of Heart Disease Prediction System Using Machine Learn...
A Comparative Analysis of Heart Disease Prediction System Using Machine Learn...A Comparative Analysis of Heart Disease Prediction System Using Machine Learn...
A Comparative Analysis of Heart Disease Prediction System Using Machine Learn...
 
predictionofheartdiseaseusingmachinelearning.pdf
predictionofheartdiseaseusingmachinelearning.pdfpredictionofheartdiseaseusingmachinelearning.pdf
predictionofheartdiseaseusingmachinelearning.pdf
 
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
 
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
 
Heart Disease Prediction Using Multi Feature and Hybrid Approach
Heart Disease Prediction Using Multi Feature and Hybrid ApproachHeart Disease Prediction Using Multi Feature and Hybrid Approach
Heart Disease Prediction Using Multi Feature and Hybrid Approach
 
IRJET- A System to Detect Heart Failure using Deep Learning Techniques
IRJET- A System to Detect Heart Failure using Deep Learning TechniquesIRJET- A System to Detect Heart Failure using Deep Learning Techniques
IRJET- A System to Detect Heart Failure using Deep Learning Techniques
 
Heart failure prediction based on random forest algorithm using genetic algo...
Heart failure prediction based on random forest algorithm  using genetic algo...Heart failure prediction based on random forest algorithm  using genetic algo...
Heart failure prediction based on random forest algorithm using genetic algo...
 
Prediction of heart disease using neural network
Prediction of heart disease using neural networkPrediction of heart disease using neural network
Prediction of heart disease using neural network
 
Presentation
PresentationPresentation
Presentation
 
PREDICTION OF HEART DISEASE USING LOGISTIC REGRESSION
PREDICTION OF HEART DISEASE USING LOGISTIC REGRESSIONPREDICTION OF HEART DISEASE USING LOGISTIC REGRESSION
PREDICTION OF HEART DISEASE USING LOGISTIC REGRESSION
 

More from IRJET Journal

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...IRJET Journal
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTUREIRJET Journal
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...IRJET Journal
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsIRJET Journal
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...IRJET Journal
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...IRJET Journal
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...IRJET Journal
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...IRJET Journal
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASIRJET Journal
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...IRJET Journal
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProIRJET Journal
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...IRJET Journal
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemIRJET Journal
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesIRJET Journal
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web applicationIRJET Journal
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...IRJET Journal
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.IRJET Journal
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...IRJET Journal
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignIRJET Journal
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...IRJET Journal
 

More from IRJET Journal (20)

TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
TUNNELING IN HIMALAYAS WITH NATM METHOD: A SPECIAL REFERENCES TO SUNGAL TUNNE...
 
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURESTUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
STUDY THE EFFECT OF RESPONSE REDUCTION FACTOR ON RC FRAMED STRUCTURE
 
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
A COMPARATIVE ANALYSIS OF RCC ELEMENT OF SLAB WITH STARK STEEL (HYSD STEEL) A...
 
Effect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil CharacteristicsEffect of Camber and Angles of Attack on Airfoil Characteristics
Effect of Camber and Angles of Attack on Airfoil Characteristics
 
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
A Review on the Progress and Challenges of Aluminum-Based Metal Matrix Compos...
 
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
Dynamic Urban Transit Optimization: A Graph Neural Network Approach for Real-...
 
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
Structural Analysis and Design of Multi-Storey Symmetric and Asymmetric Shape...
 
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
A Review of “Seismic Response of RC Structures Having Plan and Vertical Irreg...
 
A REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADASA REVIEW ON MACHINE LEARNING IN ADAS
A REVIEW ON MACHINE LEARNING IN ADAS
 
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
Long Term Trend Analysis of Precipitation and Temperature for Asosa district,...
 
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD ProP.E.B. Framed Structure Design and Analysis Using STAAD Pro
P.E.B. Framed Structure Design and Analysis Using STAAD Pro
 
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
A Review on Innovative Fiber Integration for Enhanced Reinforcement of Concre...
 
Survey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare SystemSurvey Paper on Cloud-Based Secured Healthcare System
Survey Paper on Cloud-Based Secured Healthcare System
 
Review on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridgesReview on studies and research on widening of existing concrete bridges
Review on studies and research on widening of existing concrete bridges
 
React based fullstack edtech web application
React based fullstack edtech web applicationReact based fullstack edtech web application
React based fullstack edtech web application
 
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
A Comprehensive Review of Integrating IoT and Blockchain Technologies in the ...
 
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
A REVIEW ON THE PERFORMANCE OF COCONUT FIBRE REINFORCED CONCRETE.
 
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
Optimizing Business Management Process Workflows: The Dynamic Influence of Mi...
 
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic DesignMultistoried and Multi Bay Steel Building Frame by using Seismic Design
Multistoried and Multi Bay Steel Building Frame by using Seismic Design
 
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
Cost Optimization of Construction Using Plastic Waste as a Sustainable Constr...
 

Recently uploaded

(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAbhinavSharma374939
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024hassan khalil
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxpranjaldaimarysona
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxhumanexperienceaaa
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCall Girls in Nagpur High Profile
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Dr.Costas Sachpazis
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...ranjana rawat
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )Tsuyoshi Horigome
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxupamatechverse
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSKurinjimalarL3
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Serviceranjana rawat
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 

Recently uploaded (20)

(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(ANJALI) Dange Chowk Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
Analog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog ConverterAnalog to Digital and Digital to Analog Converter
Analog to Digital and Digital to Analog Converter
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024Architect Hassan Khalil Portfolio for 2024
Architect Hassan Khalil Portfolio for 2024
 
Processing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptxProcessing & Properties of Floor and Wall Tiles.pptx
Processing & Properties of Floor and Wall Tiles.pptx
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptxthe ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
the ladakh protest in leh ladakh 2024 sonam wangchuk.pptx
 
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service NashikCollege Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
College Call Girls Nashik Nehal 7001305949 Independent Escort Service Nashik
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
Structural Analysis and Design of Foundations: A Comprehensive Handbook for S...
 
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
(PRIYA) Rajgurunagar Call Girls Just Call 7001035870 [ Cash on Delivery ] Pun...
 
SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )SPICE PARK APR2024 ( 6,793 SPICE Models )
SPICE PARK APR2024 ( 6,793 SPICE Models )
 
Introduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptxIntroduction to Multiple Access Protocol.pptx
Introduction to Multiple Access Protocol.pptx
 
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICSAPPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
APPLICATIONS-AC/DC DRIVES-OPERATING CHARACTERISTICS
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
(RIA) Call Girls Bhosari ( 7001035870 ) HI-Fi Pune Escorts Service
 
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
Call Girls in Nagpur Suman Call 7001035870 Meet With Nagpur Escorts
 

Heart Disease Prediction Using Machine Learning Techniques

  • 1. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 77 Heart Disease Prediction Using Machine Learning Techniques Sai Bhavan Gubbala 1Student, Department of Computer Science and Engineering, Sathyabama Institute of Science and Technology ---------------------------------------------------------------------***--------------------------------------------------------------------- Abstract - cardiovascular diseases are responsible for the majority of deaths globally. In most situations, thecertainty of heart disease is known, but it may be anticipated early utilizing various machine learning methods. A proper diagnosis of heart patients can be made based on variables that are readily apparent. Age, diabetes, hypertension, cholesterol, obesity, and physical activity are a few of the contributing variables. In this study we are going to find an algorithm which predicts accurately. The dataset contains 14 attributes/features and 270 instances, out of which 150 have heart disease and 120 are considered to be normal. The data seems to be complete with no null values so we are going to use supervised machine learning models. To find out the best model we are going to compare five machine learning algorithms such as Random Forest classification, Support Vector Machine, AdaBoost Classifier, Logistic Regression and Decision Tree Classifier. The goal of this paper is to do comparative research on machine learning algorithms accuracy. This research is going to be developed further for best accuracy model prediction. Key Words: Random Forest Classification, AdaBoost Classifier, Logistic Regression, Decision Tree Classifier, Support Vector Machine, Algorithm, Instances. 1.INTRODUCTION According to the World Health Organization, every year 15 million deaths occur worldwide due to heart disease. The load of cardiovascular disease is rapidly increasing all over the world from the past few years. Many researches have been conducted in attempt to pinpoint the most influential factors of heart disease as well as accurately predict the overall risk. Heart Disease is even highlighted as a silent killer which leads to the death of the personwithoutobvious symptoms. The early diagnosis of heart disease plays a vital role in making decisions on lifestyle changes in high-risk patients and in turn reduce thecomplications. Inthisproject, we have developed and researched about models for heart disease prediction through the various heart attributes of patient and detect impending heart disease using Machine learning techniques on the dataset available in the UCI repository, further evaluating the results using confusion matrix and cross validation. The author had used various machine learning techniques to predict the accuracy of test model such as Random Forest, Support Vector Machine, AdaBoost Classifier and we have clean dataset which can be readily used without cleaning or modifying the dataset. 2. LITERATURE OVERVIEW There any many research works done on heart disease diagnosis by various factors. In this study, we are going to do a comparative analysis of different classification and regression algorithms and the results revealed that RF had obtained an higher accuracywhichisthehighestamongstthe other algorithms. Authors had proposed a Random Forest Classification forHeart disease PredictionbyintegratingPCA and Cluster techniques. This study provided a significant contribution in computing strength scores with compelling predictors in heart disease prediction. Compared to five machine learning algorithms-Support Vector Machine, Decision Trees, Random Forest, AdaBoost Classifier and Logistic Regression-to predict heart disease. Among these algorithms, Random Forest gives the best accuracy, at 85.22% compared to other algorithms. Thesystemevaluates all the parameters using the training and testing technique. The dataset is evaluated in python coding language. The coding language is then further processed in a Jupyter notebook which evaluates the process by a step-by-step manner. Different types of training and testing phases were implemented. In the end, the best pair of testing and training were selected and used in the process for achieving the highest accuracy. 3. DATASET INFORMATION The dataset is collected from an online resource also known as the UCI repository. These days, the data is available every day and it is best to implement the model on a dataset which is available from a reliable resource. The dataset contains various attributes/featuressuchasage,gender,fastingblood sugar, serum cholesterol, chest pain type, resting electrocardiographic results, exercise induced angina, ST depression, slope of peak exercise, resting blood pressure, number of major vessels,thalassemia andtarget. Thedataset contains 270 instances with 14 attributes. The Table 1 gives us idea about how the dataset is implemented by numerical values. Figure 1 presents us a general overview of the dataset by indicating that 44% of patients are not diagnosed with heart disease and 56% of patientssuffercardiovascular disease.
  • 2. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 78 Table - 1: Dataset Attributes Fig - 1: Percentage of Heart Disease 3.1 DATASET PREPROCESSING Data correlation, null value verification, loading python libraries, and partitioning the dataset into training and test portions are all steps in the preprocessing of the dataset. Preprocessing provides insight into how the characteristics of the data are influencing the data. Individual elements in the below correlation, testing, and training data are directly predictive of heart disease illness. People with heart disease are shown in Figure 2 along with their link to other relevant variables. The primary factor impacting heart disease has been found as the highest heart rate attained. Finally, Figure 3 provides us with a comprehensive connection of all features, which helps us identify the causes of heart disease. This understanding is exceptional because it distinguishes between big and small elements in regard to the goal value and is extremely helpful even when there is a link between them. Fig -2: Attributes in respect to heart disease patients Attributes Description Age Age in years Sex Male-1, female-0 Chest Pain Typical angina-0, Atypical angina-1, non-anginal pain-2, Asymptomatic-3 Resting Blood Pressure 94-200 mm in Hg Cholesterol 126-524 mg/dl Fasting Blood Sugar True-1, False-0 Resting Electrocardiographic Normal-0,ST-Twaveabnoramility-1, Left ventricular hypertrophy-2 Maximum Heart 71-202 heart rate Exercise Induced Angina Yes-1, No-0 ST Depression 0-6.2 values Slope of peak exercise ST segment Upsloping-0, flat-1, downslopping-2 Number of major vessels 0-3 values Thalassemia 0-normal,1-fixeddefect,2-reversable defect Heart disease (Target) No-1, Yes-2
  • 3. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 79 Fig – 3: Correlation of data 4. SPLITTING DATA INTO TESTING AND TRAINING The training phase retrieves thecharacteristicsfromthedata while the testing proceduredetermines themodelbehaviour for prediction. While the testing phase uses dependent factors, the training phase uses independentvariables.There are many portions of the data. These are the steps of testing and training. 90% of the dataset is used for training, while 10% is used fortesting. We considertherandomstatetobe1. To decidehow the data will be splitintotrainandtestindices, we use the random state parameter. We can be certain that the method will always generate the same set of random integers if we set the random state to a constant value. The algorithms are already set up in a Jupyter notebook. FIG - 4: Splitting data 5. METHODOLOGY There are several sorts of algorithms, some of which differ from one another while others are similar; nonetheless, we now use all of these algorithms to compare their accuracy so that the one with the best accuracy may be chosen for improved predictability. 5.1 RANDOM FOREST CLASSIFIER A large number of decision trees are built during the training phase of the random forests or random decision forests ensemble learning approach. It can used to solve for regression or classification problems. The Random Forest Classifier algorithm is used and its test accuracy was 85.22 percent. 5.2 DECISION TREE Decision Tree is a structured classifier where internal nodes stand in for a dataset’s features, branches for the decision- making process, and each leaf node for the classification result. It has two nodes such as Decision nodeand Leaf node. The test accuracy was 74.34 percent. 5.3 SUPPORT VECTOR MACHINE Support Vector Machines implement nonlinear class boundaries using a linear model. The target classes are separated using support vectors.BeforetrainingalinearSVM model to classify the data in a higher-dimensional feature space to deal with a nonlinear condition, the model transforms the input using a mapping function. The test accuracy was 67.43 percent. 5.4 ADABOOST CLASSIFIER An AdaBoost classifier is a meta-estimator that first fits a classifier on the original dataset, then fitsadditionalcopiesof the classifier on the same dataset with the weights of instances that were incorrectly classified being changed so that subsequent classifiers concentrate more on challenging cases. The test accuracy was 78.59 percent. 5.5 LOGISTIC REGRESSION Logistic Regression is also known as Analytical modelling technique. It is utilized to analyze datasets with one or more independent factors that affect the outcome. A random state of 0 was imported again for logistic regression. The training model was then fitted. The test’saccuracy was81.23percent.
  • 4. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 80 6. FLOWCHART OF DIAGRAM Fig -4: Flowchart of Research The flowchart explains how the dataset is utilized while developing a prediction model. Understanding this study report requires understanding this flow chart. 7. RESULTS According to the table, Random Forest has the best accuracy of all the classifiers, at 85.22 percent. Python was used to train the models, split the dataset into training and test data, and measurehow accurate they were. Below is acomparison of the algorithms' results, along with a table listing their accuracy percentages. Sl. No. Algorithms Accuracy 1. Random Forest Classifier 85.22% 2. Logistic Regression 81.23% 3. AdaBoost Classifier 78.59% 4. Decision Tree 74.34% 5. Support Vector Machine 67.43% Table -2: Performance evaluation of algorithms Fig – 5: Random Forest Accuracy 8. CONCLUSIONS Therefore, we have finalized that Random Forest Classifier has attained the highest level of accuracy, asindicatedbythe numerical figures. Although Logistic Regression, AdaBoost Classifier, Decision Tree, and SupportVectorMachineall had accuracy levels greater than 50%, they underperformed Random Forest. When compared to the other methods discussed, it can be reasoned that the random forest approach may also attain superior accuracy. 9.FUTURE SCOPE Additionally, researchers may contrast this research’s hierarchy levels to those from other datasets and draw interesting conclusions. The authors' intendedstudywill aid in the creation of more accurate, reliable, and productive methods for predicting sickness, which will benefit not just the medical community but also numerousothergroupsand individuals throughout the globe. REFERENCES [1] Pouriyeh S, Vahid S, Sannino G, De Pietro G, Arabnia H, Gutierrez J. A comprehensive investigation and comparison of machine learning techniques in the domain of heart disease. In: 2017 IEEE symposium on computers and communications (ISCC). IEEE. p. 204– 207. [2] https://archive.ics.uci.edu/ml/datasets/statlog+(heart). [3] "Prediction of Heart Disease using Machine Learning Algorithms" Krishnan J Santhana and S Geetha ICIICT |Year :2019| Conference Paper | Publisher: IEEE [4] Bouali H, Akaichi J. Comparative study of different classification techniques: heart disease use case. In: 2014 13th international conferenceonmachinelearning and applications. IEEE. p. 482–86. [5] World Health Organization. http://www.who.int/cardiovascular diseases/en. 2019.I.S. Jacobs and C.P. Bean, “Fine particles, thin films and exchange anisotropy,” in Magnetism, vol. III, G.T.
  • 5. International Research Journal of Engineering and Technology (IRJET) e-ISSN: 2395-0056 Volume: 09 Issue: 10 | Oct 2022 www.irjet.net p-ISSN: 2395-0072 © 2022, IRJET | Impact Factor value: 7.529 | ISO 9001:2008 Certified Journal | Page 81 Rado and H. Suhl, Eds. New York: Academic, 1963, pp. 271-350. [6] Chauhan R, Bajaj P, Choudhary K, Gigras Y. Framework to predict health diseases using attribute selection mechanism. In: 2015 2nd international conference on computing for sustainable global development (INDIACom). IEEE. p. 1880–84. [7] "Effective Heart Disease Prediction Using Hybrid Machine Learning Techniques" Senthil Kumar, Mohan Chandrasegar Thirumalai and Gautam Srivastva |Year :2019| Conference Paper | Publisher: IEEE.