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
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.