Baselight

Health And Demographics Dataset

Dataset for Life Expectancy Analysis

@kaggle.uom190346a_health_and_demographics_dataset

Life Expectancy Data
@kaggle.uom190346a_health_and_demographics_dataset.life_expectancy_data

  • 104.99 KB
  • 1649 rows
  • 22 columns
country

Country

year

Year

status

Status

life_expectancy

Life Expectancy

adult_mortality

Adult Mortality

infant_deaths

Infant Deaths

alcohol

Alcohol

percentage_expenditure

Percentage Expenditure

hepatitis_b

Hepatitis B

measles

Measles

n__bmi

BMI

under_five_deaths

Under-five Deaths

polio

Polio

total_expenditure

Total Expenditure

diphtheria

Diphtheria

n__hiv_aids

HIV/AIDS

gdp

GDP

population

Population

n__thinness_1_19_years

Thinness 1-19 Years

n__thinness_5_9_years

Thinness 5-9 Years

income_composition_of_resources

Income Composition Of Resources

schooling

Schooling

Afghanistan2015Developing65263620.0171.2796236265115419.18368.16650.1584.259213373649417.217.30.47910.1
Afghanistan2014Developing59.9271640.0173.523581686249218.686588.18620.1612.69651432758217.517.50.47610
Afghanistan2013Developing59.9268660.0173.219242726443018.189628.13640.1631.7449763173168817.717.70.479.9
Afghanistan2012Developing59.5272690.0178.184215367278717.693678.52670.1669.959369695817.9180.4639.8
Afghanistan2011Developing59.2275710.017.09710870368301317.297687.87680.163.537231297859918.218.20.4549.5
Afghanistan2010Developing58.8279740.0179.6793673666198916.7102669.2660.1553.32894288316718.418.40.4489.2
Afghanistan2009Developing58.6281770.0156.7622168263286116.2106639.42630.1445.893297928433118.618.70.4348.9
Afghanistan2008Developing58.1287800.0325.8739253664159915.7110648.33640.1373.3611163272943118.818.90.4338.7
Afghanistan2007Developing57.5295820.0210.9101559863114115.2113636.73630.1369.835796266167921919.10.4158.4
Afghanistan2006Developing57.3295840.0317.1715175164199014.7116587.43580.1272.56377258934519.219.30.4058.1

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
);

Share link

Anyone who has the link will be able to view this.