All Olympic Medals Until 2024 (before Paris Games)
CSV file with a tidy structure, easy to use and transform for analysis and viz
@kaggle.ericnarro_all_olympic_medals_until_2024_before_paris_games
CSV file with a tidy structure, easy to use and transform for analysis and viz
@kaggle.ericnarro_all_olympic_medals_until_2024_before_paris_games
A list of all the medals awarded during the Olympic games, from Athens 1896 to Beijing 2022.
The data is in Tidy format, that is, each row is an observation, an an observation is a medal.
This means:
The original data comes from Olympedia but it's been transformed.
The parsing and transformation of the original data is described here: https://www.kaggle.com/code/ericnarro/create-olympic-medals-dataset
IMPORTANT: Version 3 of the dataset fixes duplicate values, so it's important to not use previous versions.
CREATE TABLE olympic_medals (
"olympiad" VARCHAR,
"discipline" VARCHAR,
"event" VARCHAR,
"winner" VARCHAR,
"medal_type" VARCHAR,
"olympic_city" VARCHAR,
"olympic_year" BIGINT,
"olympic_season" VARCHAR,
"gender" VARCHAR,
"code" VARCHAR,
"committee" VARCHAR,
"committee_type" VARCHAR
);Anyone who has the link will be able to view this.