Heart Disease
Heart Disease Data set exploration
@kaggle.volodymyrgavrysh_heart_disease
Heart Disease Data set exploration
@kaggle.volodymyrgavrysh_heart_disease
Source: https://archive.ics.uci.edu/ml/datasets/Heart+Disease
Creators:
Donor: David W. Aha (aha '@' ics.uci.edu) (714) 856-8779
Data Set Information:
This database contains 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. T
he "goal" field refers to the presence of heart disease in the patient. It is integer valued from 0 (no presence) to 4. Experiments with the Cleveland database have concentrated on simply attempting to distinguish presence from absence (value 0).
The names and social security numbers of the patients were recently removed from the database, replaced with dummy values.
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.