Baselight

Asimmetricity GDP-TertiaryEducation

Exploring the Link Between Education and Economic Performance in Europe

@kaggle.albertomarini88_asimmetricity_gdp_tertiaryeducation

About this Dataset

Asimmetricity GDP-TertiaryEducation

The dataset used in this project combines two tables sourced from Eurostat: "Tertiary Educational Attainment (age group 30-34)" and "Main GDP Aggregates per Capita". These tables were merged using Excel to facilitate a comprehensive analysis of the relationship between education levels and economic performance across countries.

Tables

Gdp Terted

@kaggle.albertomarini88_asimmetricity_gdp_tertiaryeducation.gdp_terted
  • 19.02 KB
  • 35 rows
  • 21 columns
Loading...

CREATE TABLE gdp_terted (
  "country" VARCHAR,
  "gdp_per_cap2014" BIGINT,
  "gdp_per_cap2015" BIGINT,
  "gdp_per_cap2016" BIGINT,
  "gdp_per_cap2017" BIGINT,
  "gdp_per_cap2018" BIGINT,
  "gdp_per_cap2019" BIGINT,
  "gdp_per_cap2020" VARCHAR,
  "gdp_per_cap2021" VARCHAR,
  "gdp_per_cap2022" VARCHAR,
  "gdp_per_cap2023" VARCHAR,
  "tert_ed2014" DOUBLE,
  "tert_ed2015" DOUBLE,
  "tert_ed2016" DOUBLE,
  "tert_ed2017" DOUBLE,
  "tert_ed2018" DOUBLE,
  "tert_ed2019" DOUBLE,
  "tert_ed2020" VARCHAR,
  "tert_ed2021" VARCHAR,
  "tert_ed2022" VARCHAR,
  "tert_ed2023" VARCHAR
);