Cardiovascular Disease
predict the presence or absence of cardiovascular disease.
@kaggle.colewelkins_cardiovascular_disease
predict the presence or absence of cardiovascular disease.
@kaggle.colewelkins_cardiovascular_disease
This dataset consolidates information from two primary sources:
The primary aim is to predict the presence or absence of cardiovascular disease based on various patient metrics.
age
).weight
and height
. Calculated as ( \text{BMI} = \frac{\text{weight (kg)}}{\text{height (m)}^2} ).ap_hi
and ap_lo
. Categories include "Normal", "Elevated", "Hypertension Stage 1", "Hypertension Stage 2", and "Hypertensive Crisis".bp_category
for machine learning purposes.CREATE TABLE cardio_data_processed (
"id" BIGINT,
"age" BIGINT,
"gender" BIGINT,
"height" BIGINT,
"weight" DOUBLE,
"ap_hi" BIGINT,
"ap_lo" BIGINT,
"cholesterol" BIGINT,
"gluc" BIGINT,
"smoke" BIGINT,
"alco" BIGINT,
"active" BIGINT,
"cardio" BIGINT,
"age_years" BIGINT,
"bmi" DOUBLE,
"bp_category" VARCHAR,
"bp_category_encoded" VARCHAR
);
Anyone who has the link will be able to view this.