Global Health Statistics
Global Health Statistics: Disease Prevalence, Treatments & Outcomes by Country
@kaggle.malaiarasugraj_global_health_statistics
Global Health Statistics: Disease Prevalence, Treatments & Outcomes by Country
@kaggle.malaiarasugraj_global_health_statistics
This dataset provides comprehensive statistics on global health, focusing on various diseases, treatments, and outcomes. The data spans multiple countries and years, offering valuable insights for health research, epidemiology studies, and machine learning applications. The dataset includes information on the prevalence, incidence, and mortality rates of major diseases, as well as the effectiveness of treatments and healthcare infrastructure.
This dataset can be used for:
CREATE TABLE global_health_statistics (
"country" VARCHAR,
"year" BIGINT,
"disease_name" VARCHAR,
"disease_category" VARCHAR,
"prevalence_rate" DOUBLE -- Prevalence Rate (%),
"incidence_rate" DOUBLE -- Incidence Rate (%),
"mortality_rate" DOUBLE -- Mortality Rate (%),
"age_group" VARCHAR,
"gender" VARCHAR,
"population_affected" BIGINT,
"healthcare_access" DOUBLE -- Healthcare Access (%),
"doctors_per_1000" DOUBLE,
"hospital_beds_per_1000" DOUBLE,
"treatment_type" VARCHAR,
"average_treatment_cost_usd" BIGINT -- Average Treatment Cost (USD),
"availability_of_vaccines_treatment" VARCHAR,
"recovery_rate" DOUBLE -- Recovery Rate (%),
"dalys" BIGINT,
"improvement_in_5_years" DOUBLE -- Improvement In 5 Years (%),
"per_capita_income_usd" BIGINT -- Per Capita Income (USD),
"education_index" DOUBLE,
"urbanization_rate" DOUBLE -- Urbanization Rate (%)
);Anyone who has the link will be able to view this.