Heart Disease Dataset
Dataset of heart diseases consisting medical information of patients
@kaggle.winson13_heart_disease_dataset
Dataset of heart diseases consisting medical information of patients
@kaggle.winson13_heart_disease_dataset
This dataset contains medical and behavioral information used to predict the risk of heart disease. It is highly useful for research and machine learning in the health field.
This dataset can be used for various data analysis and machine learning projects, such as:
CREATE TABLE cleveland1 (
"age" BIGINT,
"sex" BIGINT,
"chest_pain_type" BIGINT,
"resting_bp_s" BIGINT,
"cholesterol" BIGINT,
"fasting_blood_sugar" BIGINT,
"resting_ecg" BIGINT,
"max_heart_rate" BIGINT,
"exercise_angina" BIGINT,
"oldpeak" DOUBLE,
"st_slope" BIGINT,
"target" BIGINT
);CREATE TABLE cleveland2 (
"unnamed_0" BIGINT -- Unnamed: 0,
"age" BIGINT,
"sex" BIGINT,
"cp" BIGINT,
"trestbps" BIGINT,
"chol" BIGINT,
"fbs" BIGINT,
"restecg" BIGINT,
"thalach" BIGINT,
"exang" BIGINT,
"oldpeak" DOUBLE,
"slope" BIGINT,
"ca" BIGINT,
"thal" BIGINT,
"target" BIGINT
);CREATE TABLE dataset_heart_disease (
"unnamed_0" BIGINT -- Unnamed: 0,
"age" BIGINT,
"sex" BIGINT,
"chest_pain_type" BIGINT,
"resting_bps" BIGINT,
"cholesterol" DOUBLE,
"fasting_blood_sugar" BIGINT,
"resting_ecg" BIGINT,
"max_heart_rate" BIGINT,
"exercise_angina" BIGINT,
"oldpeak" DOUBLE,
"st_slope" BIGINT,
"target" BIGINT
);Anyone who has the link will be able to view this.