Badminton World Rankings (historic Top 100)
Last Updated : July 2023
@kaggle.valentindefour_badminton_world_rankings_updated_august_2020
Last Updated : July 2023
@kaggle.valentindefour_badminton_world_rankings_updated_august_2020
I scrapped the badminton top100 ranked players for each discipline for each week since 1990.
Got the data from https://bwfbadminton.com/rankings/.
I will try to update this data set on a monthly base with the missing weeks.
CREATE TABLE bwf_historic_rankings (
"unnamed_0" BIGINT -- Unnamed: 0,
"rank" BIGINT,
"delta_rank" DOUBLE,
"country_code" VARCHAR,
"name" VARCHAR,
"id" VARCHAR,
"points" BIGINT,
"tournaments_played" DOUBLE,
"continent" VARCHAR,
"country" VARCHAR,
"date" TIMESTAMP,
"draw" VARCHAR
);
Anyone who has the link will be able to view this.