Cardiovascular-Disease-Dataset
Health dataset, Simple dataset for EDA and classification models
@kaggle.akshatshaw7_cardiovascular_disease_dataset
Health dataset, Simple dataset for EDA and classification models
@kaggle.akshatshaw7_cardiovascular_disease_dataset
PLEASE UPVOTE
Try some basic EDA on this dataset and try simpler model on this dataset and post your work.
Features:
Age | Objective Feature | age | int (days)
Height | Objective Feature | height | int (cm) |
Weight | Objective Feature | weight | float (kg) |
Gender | Objective Feature | gender | categorical code |
Systolic blood pressure | Examination Feature | ap_hi | int |
Diastolic blood pressure | Examination Feature | ap_lo | int |
Cholesterol | Examination Feature | cholesterol | 1: normal, 2: above normal, 3: well above normal |
Glucose | Examination Feature | gluc | 1: normal, 2: above normal, 3: well above normal |
Smoking | Subjective Feature | smoke | binary |
Alcohol intake | Subjective Feature | alco | binary |
Physical activity | Subjective Feature | active | binary |
Presence or absence of cardiovascular disease | Target Variable | cardio | binary |
CREATE TABLE health_data (
  "unnamed_0" BIGINT  -- Unnamed: 0,
  "id" DOUBLE,
  "age" DOUBLE,
  "gender" BIGINT,
  "height" DOUBLE,
  "weight" DOUBLE,
  "ap_hi" DOUBLE,
  "ap_lo" DOUBLE,
  "cholesterol" BIGINT,
  "gluc" BIGINT,
  "smoke" BIGINT,
  "alco" BIGINT,
  "active" BIGINT,
  "cardio" BIGINT
);Anyone who has the link will be able to view this.