World Top Chess Players (August 2020)
Dataset of top chess players by their FIDE rating (August 2020)
@kaggle.vikasojha98_world_top_chess_players_august_2020
Dataset of top chess players by their FIDE rating (August 2020)
@kaggle.vikasojha98_world_top_chess_players_august_2020
The International Chess Federation (FIDE) governs international chess competition. FIDE used Elo rating system for calculating the relative skill levels of players.
The dataset contains details of all the chess players in the world sorted by their Standard FIDE rating (highest to lowest) as updated by FIDE in August 2020. The data includes all active and inactive players which can be identified by the Inactive_flag column.
Note: All ratings are updated as published by FIDE in August 2020.
FIDE: https://www.fide.com/
CREATE TABLE top_chess_players_aug_2020 (
"fide_id" BIGINT,
"name" VARCHAR,
"federation" VARCHAR,
"gender" VARCHAR,
"year_of_birth" DOUBLE,
"title" VARCHAR,
"standard_rating" DOUBLE,
"rapid_rating" DOUBLE,
"blitz_rating" DOUBLE,
"inactive_flag" VARCHAR
);
Anyone who has the link will be able to view this.