Heart Disease Dataset
A simple records of Heart Patients monitored - Binary Classification Problem.
@kaggle.yasserh_heart_disease_dataset
A simple records of Heart Patients monitored - Binary Classification Problem.
@kaggle.yasserh_heart_disease_dataset
This database contains 76 attributes, but all published experiments refer to using a subset of 14 of them. In particular, the Cleveland database is the only one that has been used by ML researchers to
this date. The "goal" field refers to the presence of heart disease in the patient. It is integer-valued from 0 (no presence) to 4.
This dataset has been referred from Kaggle.
CREATE TABLE heart (
"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
);Anyone who has the link will be able to view this.