Chess FIDE Ratings (2015 - 2021)
Official monthly FIDE ratings of all rated players
@kaggle.rohanrao_chess_fide_ratings
Official monthly FIDE ratings of all rated players
@kaggle.rohanrao_chess_fide_ratings
The International Chess Federation (FIDE) maintains the official ratings of all rated players in the world. The ratings follow the Elo Rating System and are globally used as the primary system.
The dataset contains the published ratings of all rated players from Jan-2015 to Dec-2020.
FIDE: https://www.fide.com/
Logo is FIDE's logo
CREATE TABLE players (
"fide_id" BIGINT,
"name" VARCHAR,
"federation" VARCHAR,
"gender" VARCHAR,
"title" VARCHAR,
"yob" BIGINT
);CREATE TABLE ratings_2015 (
"fide_id" BIGINT,
"year" BIGINT,
"month" BIGINT,
"rating_standard" DOUBLE,
"rating_rapid" DOUBLE,
"rating_blitz" DOUBLE
);CREATE TABLE ratings_2016 (
"fide_id" BIGINT,
"year" BIGINT,
"month" BIGINT,
"rating_standard" DOUBLE,
"rating_rapid" DOUBLE,
"rating_blitz" DOUBLE
);CREATE TABLE ratings_2017 (
"fide_id" BIGINT,
"year" BIGINT,
"month" BIGINT,
"rating_standard" DOUBLE,
"rating_rapid" DOUBLE,
"rating_blitz" DOUBLE
);CREATE TABLE ratings_2018 (
"fide_id" BIGINT,
"year" BIGINT,
"month" BIGINT,
"rating_standard" DOUBLE,
"rating_rapid" DOUBLE,
"rating_blitz" DOUBLE
);CREATE TABLE ratings_2019 (
"fide_id" BIGINT,
"year" BIGINT,
"month" BIGINT,
"rating_standard" DOUBLE,
"rating_rapid" DOUBLE,
"rating_blitz" DOUBLE
);CREATE TABLE ratings_2020 (
"fide_id" BIGINT,
"year" BIGINT,
"month" BIGINT,
"rating_standard" DOUBLE,
"rating_rapid" DOUBLE,
"rating_blitz" DOUBLE
);CREATE TABLE ratings_2021 (
"fide_id" BIGINT,
"year" BIGINT,
"month" BIGINT,
"rating_standard" DOUBLE,
"rating_rapid" DOUBLE,
"rating_blitz" DOUBLE
);Anyone who has the link will be able to view this.