International Chess Statistics 2022
Dataset of all chess players around the world along with country's chess stats.
@kaggle.deepcontractor_international_chess_statistics_2022
Dataset of all chess players around the world along with country's chess stats.
@kaggle.deepcontractor_international_chess_statistics_2022
This dataset chess statistics w.r.t. countries as well as their player base.
File 1 : Complete Player Database
The data was scraped from chess-ranking.com\
Magnus Carlsen's YouTube channel.
CREATE TABLE complete_players_database (
"country_rank" BIGINT,
"name" VARCHAR,
"title" VARCHAR,
"country" VARCHAR,
"fide" VARCHAR,
"age" BIGINT,
"n__k_factor" BIGINT -- K-factor
);CREATE TABLE international_chess_stats (
"unnamed_0" BIGINT -- Unnamed: 0,
"n" BIGINT -- #,
"country" VARCHAR,
"flag" VARCHAR,
"num_players" BIGINT,
"women" BIGINT,
"n__of_women" DOUBLE -- % Of Women,
"fide_average" BIGINT,
"gms" BIGINT,
"ims" BIGINT,
"fms" BIGINT,
"wgms" BIGINT,
"wims" BIGINT,
"wfms" BIGINT,
"age_avg" BIGINT
);Anyone who has the link will be able to view this.