Baselight

Health & Development Indicators: Global Insights

Analyzing the Intersection of Health and Development Indicators Across Nations

@kaggle.arunjangir245_life_expectancy_data

About this Dataset

Health & Development Indicators: Global Insights

Labels: "Status" (Development Status: Developing or Developed)

Features:

  1. Country: The name of the country.
  2. Year: The year of data recording.
  3. Life Expectancy: The average number of years a newborn, person at different age ranges, or the entire population is expected to live
  4. Adult Mortality: Probability of dying between 15 and 60 years per 1000 population.
  5. Infant Deaths: Number of infant deaths per 1000 live births.
  6. Alcohol: Alcohol consumption per capita (in liters of pure alcohol).
  7. Percentage Expenditure: Expenditure on health as a percentage of total government spending or GDP.
  8. Hepatitis B: Hepatitis B immunization coverage among 1-year-olds (percentage).
  9. Measles: Measles immunization coverage among 1-year-olds (percentage).

Tables

Life Expectancy Data

@kaggle.arunjangir245_life_expectancy_data.life_expectancy_data
  • 104.99 KB
  • 1649 rows
  • 22 columns
Loading...

CREATE TABLE life_expectancy_data (
  "country" VARCHAR,
  "year" BIGINT,
  "status" VARCHAR,
  "life_expectancy" DOUBLE,
  "adult_mortality" BIGINT,
  "infant_deaths" BIGINT,
  "alcohol" DOUBLE,
  "percentage_expenditure" DOUBLE,
  "hepatitis_b" BIGINT,
  "measles" BIGINT,
  "n__bmi" DOUBLE,
  "under_five_deaths" BIGINT,
  "polio" BIGINT,
  "total_expenditure" DOUBLE,
  "diphtheria" BIGINT,
  "n__hiv_aids" DOUBLE,
  "gdp" DOUBLE,
  "population" DOUBLE,
  "n__thinness_1_19_years" DOUBLE,
  "n__thinness_5_9_years" DOUBLE,
  "income_composition_of_resources" DOUBLE,
  "schooling" DOUBLE
);