Heart Failure Prediction Dataset
11 clinical features for predicting heart disease events.
@kaggle.fedesoriano_heart_failure_prediction
11 clinical features for predicting heart disease events.
@kaggle.fedesoriano_heart_failure_prediction
Cardiovascular diseases (CVDs) are the number 1 cause of death globally, taking an estimated 17.9 million lives each year, which accounts for 31% of all deaths worldwide. Four out of 5CVD deaths are due to heart attacks and strokes, and one-third of these deaths occur prematurely in people under 70 years of age. Heart failure is a common event caused by CVDs and this dataset contains 11 features that can be used to predict a possible heart disease.
People with cardiovascular disease or who are at high cardiovascular risk (due to the presence of one or more risk factors such as hypertension, diabetes, hyperlipidaemia or already established disease) need early detection and management wherein a machine learning model can be of great help.
This dataset was created by combining different datasets already available independently but not combined before. In this dataset, 5 heart datasets are combined over 11 common features which makes it the largest heart disease dataset available so far for research purposes. The five datasets used for its curation are:
Total: 1190 observations
Duplicated: 272 observations
Final dataset: 918 observations
Every dataset used can be found under the Index of heart disease datasets from UCI Machine Learning Repository on the following link: https://archive.ics.uci.edu/ml/machine-learning-databases/heart-disease/
fedesoriano. (September 2021). Heart Failure Prediction Dataset. Retrieved [Date Retrieved] from https://www.kaggle.com/fedesoriano/heart-failure-prediction.
Creators:
Donor:
David W. Aha (aha '@' ics.uci.edu) (714) 856-8779
CREATE TABLE heart (
"age" BIGINT,
"sex" VARCHAR,
"chestpaintype" VARCHAR,
"restingbp" BIGINT,
"cholesterol" BIGINT,
"fastingbs" BIGINT,
"restingecg" VARCHAR,
"maxhr" BIGINT,
"exerciseangina" VARCHAR,
"oldpeak" DOUBLE,
"st_slope" VARCHAR,
"heartdisease" BIGINT
);Anyone who has the link will be able to view this.