Baselight

Historical Olympic Medals Data (1994-2024)

Medal Counts and Performance Insights from 30 Years of Olympics

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024

Loading...
Loading...

About this Dataset

Historical Olympic Medals Data (1994-2024)

Overview:

This dataset offers an extensive collection of medal data from the Olympic Games spanning from 1994 to 2024. It provides a detailed breakdown of the medals awarded across both Summer and Winter Olympics, capturing the achievements of participating countries over a 30-year period.

Dataset Contents:

The database is organized into tables, each corresponding to a specific Olympic Games year, and includes:

  • NOC (National Olympic Committee): Unique codes for each country’s National Olympic Committee, allowing for easy identification and comparison of participating nations.
  • Gold Medals: Number of gold medals won by each country in the given Olympic Games.
  • Silver Medals: Number of silver medals won by each country.
  • Bronze Medals: Number of bronze medals won by each country.
  • Total Medals: The cumulative count of gold, silver, and bronze medals awarded to each country.

Coverage:

The dataset encompasses both Summer and Winter Olympic Games, providing a comprehensive view of global athletic performance across different seasons and types of events. It includes data from notable Olympics such as:

  • Summer Games: Atlanta 1996, Sydney 2000, Athens 2004, Beijing 2008, London 2012, Rio 2016, Tokyo 2020, and Paris 2024.
  • Winter Games: Lillehammer 1994, Nagano 1998, Salt Lake City 2002, Torino 2006, Vancouver 2010, Sochi 2014, and PyeongChang 2018, with additional data for Beijing 2022.

Analytical Uses:

This dataset is valuable for a range of analytical purposes, including:

  • Trend Analysis: Examine changes in medal counts and performance trends over the years to understand how countries' athletic capabilities have evolved.
  • Performance Comparison: Compare the performance of different countries across multiple Olympic Games to assess their relative success and consistency.
  • Visualization: Create charts, graphs, and maps to visualize medal distributions, highlight standout performances, and reveal patterns in Olympic achievements.
  • Historical Insights: Explore the impact of historical, political, and social factors on Olympic performances and medal distributions.

By providing a rich historical record of Olympic achievements, this dataset supports various research and analysis projects aimed at understanding the dynamics of international sports competition and national performance in the Olympic arena.


Acknowledgment

This dataset is also available on Kaggle, originally contributed by Youssef Ismail. You can find the dataset here: Olympic Games 1994-2024.

The purpose of this contribution is to build upon and share the data with the community, fostering deeper analysis and exploration of Olympic performances over the years.

Tables

N 1994 Lillehammer Olympics Nations Medals

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024.n_1994_lillehammer_olympics_nations_medals
  • 4.17 KB
  • 22 rows
  • 5 columns
Loading...

CREATE TABLE n_1994_lillehammer_olympics_nations_medals (
  "noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

N 1996 Atlanta Olympics Nations Medals

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024.n_1996_atlanta_olympics_nations_medals
  • 4.78 KB
  • 78 rows
  • 5 columns
Loading...

CREATE TABLE n_1996_atlanta_olympics_nations_medals (
  "noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

N 1998 Nagano Olympics Nations Medals

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024.n_1998_nagano_olympics_nations_medals
  • 4.2 KB
  • 24 rows
  • 5 columns
Loading...

CREATE TABLE n_1998_nagano_olympics_nations_medals (
  "noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

N 2000 Sydney Olympics Nations Medals

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024.n_2000_sydney_olympics_nations_medals
  • 4.82 KB
  • 79 rows
  • 5 columns
Loading...

CREATE TABLE n_2000_sydney_olympics_nations_medals (
  "noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

N 2002 Saltlakecity Olympics Nations Medals

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024.n_2002_saltlakecity_olympics_nations_medals
  • 4.19 KB
  • 24 rows
  • 5 columns
Loading...

CREATE TABLE n_2002_saltlakecity_olympics_nations_medals (
  "noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

N 2004 Athens Olympics Nations Medals

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024.n_2004_athens_olympics_nations_medals
  • 4.78 KB
  • 74 rows
  • 5 columns
Loading...

CREATE TABLE n_2004_athens_olympics_nations_medals (
  "noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

N 2006 Torino Olympics Nations Medals

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024.n_2006_torino_olympics_nations_medals
  • 4.24 KB
  • 26 rows
  • 5 columns
Loading...

CREATE TABLE n_2006_torino_olympics_nations_medals (
  "noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

N 2008 Beijing Olympics Nations Medals

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024.n_2008_beijing_olympics_nations_medals
  • 4.87 KB
  • 87 rows
  • 5 columns
Loading...

CREATE TABLE n_2008_beijing_olympics_nations_medals (
  "noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

N 2010 Vancouver Olympics Nations Medals

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024.n_2010_vancouver_olympics_nations_medals
  • 4.23 KB
  • 26 rows
  • 5 columns
Loading...

CREATE TABLE n_2010_vancouver_olympics_nations_medals (
  "noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

N 2012 London Olympics Nations Medals

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024.n_2012_london_olympics_nations_medals
  • 4.86 KB
  • 86 rows
  • 5 columns
Loading...

CREATE TABLE n_2012_london_olympics_nations_medals (
  "noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

N 2014 Sochi Olympics Nations Medals

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024.n_2014_sochi_olympics_nations_medals
  • 4.25 KB
  • 26 rows
  • 5 columns
Loading...

CREATE TABLE n_2014_sochi_olympics_nations_medals (
  "noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

N 2016 Rio Olympics Nations Medals

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024.n_2016_rio_olympics_nations_medals
  • 4.87 KB
  • 85 rows
  • 5 columns
Loading...

CREATE TABLE n_2016_rio_olympics_nations_medals (
  "noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

N 2018 Pyeongchang Olympics Nations Medals

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024.n_2018_pyeongchang_olympics_nations_medals
  • 4.28 KB
  • 30 rows
  • 5 columns
Loading...

CREATE TABLE n_2018_pyeongchang_olympics_nations_medals (
  "noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

N 2020 Tokyo Olympics Nations Medals

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024.n_2020_tokyo_olympics_nations_medals
  • 4.93 KB
  • 92 rows
  • 5 columns
Loading...

CREATE TABLE n_2020_tokyo_olympics_nations_medals (
  "noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

N 2022 Beijing Olympics Nations Medals

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024.n_2022_beijing_olympics_nations_medals
  • 4.27 KB
  • 29 rows
  • 5 columns
Loading...

CREATE TABLE n_2022_beijing_olympics_nations_medals (
  "noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

N 2024 Paris Olympics Nations Medals

@kaggle.muhammadehsan02_historical_olympic_medals_data_1994_2024.n_2024_paris_olympics_nations_medals
  • 4.92 KB
  • 91 rows
  • 5 columns
Loading...

CREATE TABLE n_2024_paris_olympics_nations_medals (
  "noc" VARCHAR,
  "gold" BIGINT,
  "silver" BIGINT,
  "bronze" BIGINT,
  "total" BIGINT
);

Share link

Anyone who has the link will be able to view this.