Baselight

Heart Attack Prediction

Analyzing Key Factors for Predicting Heart Disease Risk

@kaggle.juledz_heart_attack_prediction

Heart
@kaggle.juledz_heart_attack_prediction.heart

  • 18.17 KB
  • 1025 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

521125212116812230.23
531140203115513.130.37
701145174112512.630.24
61114820311612130.28
62138294111061.91320.21
581002481221120.78
58111431821404.4310.37
55116028914510.81130.17
4611202491440.8230.25
54112228611613.21220.23

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

Share link

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