Olympics 124 Years Dataset(till 2020)
Summer olympics data set (124 years) & winter dataset (90 years)
@kaggle.nitishsharma01_olympics_124_years_datasettill_2020
Summer olympics data set (124 years) & winter dataset (90 years)
@kaggle.nitishsharma01_olympics_124_years_datasettill_2020
The modern Olympic Games have been held every four years since 1896, so there have been a total of 27 summer Olympics and 22 winter Olympics as of my training data cutoff in 2021. I used two different datasets for this project, and I performed multiple functions to create a valuable dataset from the two. The first dataset was completely different from the other, so I used Pandas to perform different tasks and create a compatible dataset for this project.
CREATE TABLE athletes_summer_games (
"unnamed_0" BIGINT -- Unnamed: 0,
"name" VARCHAR,
"sex" VARCHAR,
"age" DOUBLE,
"team" VARCHAR,
"noc" VARCHAR,
"games" VARCHAR,
"year" BIGINT,
"season" VARCHAR,
"city" VARCHAR,
"sport" VARCHAR,
"event" VARCHAR,
"medal" VARCHAR
);CREATE TABLE athletes_winter_games (
"unnamed_0" BIGINT -- Unnamed: 0,
"name" VARCHAR,
"sex" VARCHAR,
"age" DOUBLE,
"team" VARCHAR,
"noc" VARCHAR,
"games" VARCHAR,
"year" BIGINT,
"season" VARCHAR,
"city" VARCHAR,
"sport" VARCHAR,
"event" VARCHAR,
"medal" VARCHAR
);CREATE TABLE regions (
"unnamed_0" BIGINT -- Unnamed: 0,
"noc" VARCHAR,
"region" VARCHAR,
"notes" VARCHAR
);Anyone who has the link will be able to view this.