Winter Olympics (1924 - 2018)
This dataset contains the data of all the past Winter Olympic events
@kaggle.leminhnguyen_winter_olympics_1924_2018
This dataset contains the data of all the past Winter Olympic events
@kaggle.leminhnguyen_winter_olympics_1924_2018
As Winter Olympic 2022 is approaching, I aim to better understand the different disciplines and sports that are competed at the event, so that I can better appreciate the event overall. Thus, I have scraped the following data
There are 3 CSV. The first one olympic_events.csv, include the information about the different Olympic events on a high level, with information such as name of the event, where and when it took place, number of overall participants, etc.
events_medals.csv dive deeper into which are the countries that have won a medal, how many have they won, etc.
The last one, discipline_details.csv, dive deeper into all the sport competed at each individual event
This data has been collected through https://olympedia.org/
CREATE TABLE discipline_details (
"event_number" VARCHAR,
"event_year" BIGINT,
"discipline" VARCHAR,
"category" VARCHAR,
"date" VARCHAR,
"n_participants" BIGINT,
"n_country_participants" BIGINT,
"gold_medalist" VARCHAR,
"gold_country" VARCHAR,
"silver_medalist" VARCHAR,
"silver_country" VARCHAR,
"bronze_medalist" VARCHAR,
"bronze_country" VARCHAR
);CREATE TABLE events_medals (
"event_number" VARCHAR,
"event_year" BIGINT,
"country" VARCHAR,
"gold" BIGINT,
"silver" BIGINT,
"bronze" BIGINT,
"total" BIGINT
);CREATE TABLE olympic_events (
"event_city" VARCHAR,
"event_country" VARCHAR,
"event_number" VARCHAR,
"event_year" BIGINT,
"opening_ceremony" VARCHAR,
"closing_ceremony" VARCHAR,
"n_participants" BIGINT,
"n_countries" VARCHAR,
"n_medals" BIGINT,
"n_disciplines" BIGINT
);Anyone who has the link will be able to view this.