Heart Attack In Youth VS Adult In France
Heart Attack in Youth VS Adult in France(StateWise)
@kaggle.ankushpanday1_heart_attack_in_youth_vs_adult_in_france
Heart Attack in Youth VS Adult in France(StateWise)
@kaggle.ankushpanday1_heart_attack_in_youth_vs_adult_in_france
Dataset Insights
Key Variables:
Heart_Attack indicates the target variable for analysis.
Age_Group categorizes the dataset into youth and adult groups.
Balanced Attributes: Columns such as Sex, Smoking_Status, and Region are sampled to represent diversity.
Potential Uses: The dataset can be used to:
Predict heart attack occurrences using medical and lifestyle data.
Analyze demographic and environmental factors contributing to heart conditions.
CREATE TABLE heart_attack_youth_adult_france (
"patient_id" BIGINT,
"age" BIGINT,
"sex" VARCHAR,
"weight_kg" DOUBLE,
"height_cm" BIGINT,
"bmi" DOUBLE,
"blood_pressure_systolic" BIGINT,
"blood_pressure_diastolic" BIGINT,
"cholesterol_level" DOUBLE,
"smoking_status" VARCHAR,
"alcohol_consumption" BIGINT,
"physical_activity_hours" DOUBLE,
"diabetes" VARCHAR,
"family_history" VARCHAR,
"diet_type" VARCHAR,
"stress_level" BIGINT,
"heart_rate" BIGINT,
"exercise_induced_pain" VARCHAR,
"heart_attack" VARCHAR,
"age_group" VARCHAR,
"region" VARCHAR,
"air_pollution_level" BIGINT,
"income_level" VARCHAR,
"education_level" VARCHAR,
"health_insurance" VARCHAR,
"regular_checkups" VARCHAR,
"medication_adherence" VARCHAR
);Anyone who has the link will be able to view this.