Suicide Rates Overview 1985 To 2016
Compares socio-economic info with suicide rates by year and country
@kaggle.russellyates88_suicide_rates_overview_1985_to_2016
Compares socio-economic info with suicide rates by year and country
@kaggle.russellyates88_suicide_rates_overview_1985_to_2016
This compiled dataset pulled from four other datasets linked by time and place, and was built to find signals correlated to increased suicide rates among different cohorts globally, across the socio-economic spectrum.
United Nations Development Program. (2018). Human development index (HDI). Retrieved from http://hdr.undp.org/en/indicators/137506
World Bank. (2018). World development indicators: GDP (current US$) by country:1985 to 2016. Retrieved from http://databank.worldbank.org/data/source/world-development-indicators
[Szamil]. (2017). Suicide in the Twenty-First Century [dataset]. Retrieved from https://www.kaggle.com/szamil/suicide-in-the-twenty-first-century/notebook
World Health Organization. (2018). Suicide prevention. Retrieved from http://www.who.int/mental_health/suicide-prevention/en/
Suicide Prevention.
CREATE TABLE master (
  "country" VARCHAR,
  "year" BIGINT,
  "sex" VARCHAR,
  "age" VARCHAR,
  "suicides_no" BIGINT,
  "population" BIGINT,
  "suicides_100k_pop" DOUBLE,
  "country_year" VARCHAR,
  "hdi_for_year" DOUBLE,
  "n__gdp_for_year" BIGINT  -- Gdp For Year ($),
  "gdp_per_capita" BIGINT  -- Gdp Per Capita ($),
  "generation" VARCHAR
);Anyone who has the link will be able to view this.