Olympics Data Set
Olympics data set to learn about EDA
@kaggle.noob2511_olympics_data_set
Olympics data set to learn about EDA
@kaggle.noob2511_olympics_data_set
This dataset contains the details of over 11,000 athletes, with 47 disciples, along with 743 teams that were taking part in Tokyo Olympics 2020- 2021.
It contains data set of athletes, coaches, and teams participating as well as entries by gender. It contains names, countries, disciplines, gender and names of the coaches as well.
Source : Tokyo Olympics 2020 Website
CREATE TABLE entriesgender (
"discipline" VARCHAR,
"female" BIGINT,
"male" BIGINT,
"total" BIGINT
);CREATE TABLE medals (
"rank" BIGINT,
"teamcountry" VARCHAR,
"gold" BIGINT,
"silver" BIGINT,
"bronze" BIGINT,
"total" BIGINT,
"rank_by_total" BIGINT
);Anyone who has the link will be able to view this.