Baselight

Suicide Rate And Life Expectancy

Life expectancy around different countries in the world and suicide rate data

@kaggle.marshuu_suicide_rate_and_life_expectancy

Loading...
Loading...

About this Dataset

Suicide Rate And Life Expectancy

There're 2 datasets:

  1. Life expectancy contains information about life expectancy for men and for women, happiness score and fertility rate.
  2. Suicide Rate contains information about the suicide rate and GDP per capita on each country.

Tables

Life Expectancy

@kaggle.marshuu_suicide_rate_and_life_expectancy.life_expectancy
  • 8.68 kB
  • 142 rows
  • 5 columns
Loading...
CREATE TABLE life_expectancy (
  "country" VARCHAR,
  "life_expectancy_years_men" DOUBLE  -- Life Expectancy (years) - Men,
  "life_expectancy_years_women" DOUBLE  -- Life Expectancy (years) - Women,
  "happiness_score" DOUBLE,
  "fertility_rate_births_per_woman" DOUBLE  -- Fertility Rate (births Per Woman)
);

Suicide Rate

@kaggle.marshuu_suicide_rate_and_life_expectancy.suicide_rate
  • 5.71 kB
  • 140 rows
  • 3 columns
Loading...
CREATE TABLE suicide_rate (
  "country" VARCHAR,
  "gdp_per_capita" BIGINT,
  "suicide_rate" DOUBLE
);

Share link

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