Baselight

Heart Disease

Heart Disease Data set exploration

@kaggle.volodymyrgavrysh_heart_disease

Heart
@kaggle.volodymyrgavrysh_heart_disease.heart

  • 12.87 KB
  • 303 rows
  • 14 columns
age

Age

sex

Sex

cp

Cp

trestbps

Trestbps

chol

Chol

fbs

Fbs

restecg

Restecg

thalach

Thalach

exang

Exang

oldpeak

Oldpeak

slope

Slope

ca

Ca

thal

Thal

target

Target

631314523311502.311
371213025011873.521
4111302041721.4221
561112023611780.8221
57120354116310.6221
57114019211480.4111
5611402941531.3121
44111202631173231
5212172199111620.5231
571215016811741.6221

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
);

Share link

Anyone who has the link will be able to view this.