Baselight

Heart Attack Dataset

Exploring Factors and Predictors of Heart Attacks.

@kaggle.sukhmandeepsinghbrar_heart_attack_dataset

Medicaldataset
@kaggle.sukhmandeepsinghbrar_heart_attack_dataset.medicaldataset

  • 23.13 KB
  • 1319 rows
  • 9 columns
age

Age

gender

Gender

heart_rate

Heart Rate

systolic_blood_pressure

Systolic Blood Pressure

diastolic_blood_pressure

Diastolic Blood Pressure

blood_sugar

Blood Sugar

ck_mb

CK-MB

troponin

Troponin

result

Result

63166160831601.80.012negative
2019498462966.751.06positive
56164160772701.990.003negative
661701205527013.870.122positive
54164112653001.080.003negative
526111258871.830.004negative
3840179681020.710.003negative
6116021482873002.37positive
4960154811352.350.004negative
65161160951002.840.011negative

CREATE TABLE medicaldataset (
  "age" BIGINT,
  "gender" BIGINT,
  "heart_rate" BIGINT,
  "systolic_blood_pressure" BIGINT,
  "diastolic_blood_pressure" BIGINT,
  "blood_sugar" DOUBLE,
  "ck_mb" DOUBLE,
  "troponin" DOUBLE,
  "result" VARCHAR
);

Share link

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