Athens 1906 Medals
All the medal winners for the 1906 Intercalated games in Athens
@kaggle.ericnarro_athen_1906_medals
All the medal winners for the 1906 Intercalated games in Athens
@kaggle.ericnarro_athen_1906_medals
The 1906 Intercalated Games, happened in Athens, Greece, as an international multi-sport event proposed by the International Olympic Committee (IOC) to be held between regular Olympic Games. Despite lacking official recognition from the IOC, these Games introduced several innovations, including separate opening and closing ceremonies, an Olympic Village, and athletes marching behind national flags. Notable achievements included Ray Ewry's eight gold medals and Paul Pilgrim's double win. The event featured 854 athletes from 20 countries competing in 78 events across 14 disciplines, with France leading the medal count. Despite initial success, subsequent attempts to continue the Intercalated Games faced challenges, leading to their abandonment. However, the influence of the 1906 Games persisted in shaping future Olympic traditions and reigniting interest in the Olympics, contributing to the continuity of the modern Olympic Movement.
This dataset has exactly the same structure as the olympic medals one, and comes from the same place: Olympedia.
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
CREATE TABLE athens_1906_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.