ITTF Table Tennis Player Rankings And Information
ITTF Table tennis rankings 2001-2020 + player information
@kaggle.romanzdk_ittf_table_tennis_player_rankings_and_information
ITTF Table tennis rankings 2001-2020 + player information
@kaggle.romanzdk_ittf_table_tennis_player_rankings_and_information
As I am a table tennis (also tennis and badminton) and data analytics enthusiast I was searching for some datasets to play with. I was able to find ATP a lot of tennis (ATP) datasets, but no table tennis ones. So I searched for some data on the ITTF page and here I come.
ITTF player info - information about players like birth year, association, gender, activity, playing hand or playing style.
ITTF rankings - history of singles senior male table tennis players rankings from 2001 - 06/2020
ITTF rankings women - history of singles senior female table tennis players rankings from 2001 - 06/2020
CREATE TABLE ittf_player_info (
"player_id" BIGINT,
"name" VARCHAR,
"assoc" VARCHAR,
"gender" VARCHAR,
"birth_year" DOUBLE,
"activity" VARCHAR,
"playing_hand" VARCHAR,
"playing_style" VARCHAR,
"grip" VARCHAR
);
CREATE TABLE ittf_rankings (
"rank" BIGINT,
"previous" DOUBLE,
"id" BIGINT,
"assoc" VARCHAR,
"gender" VARCHAR,
"name" VARCHAR,
"points" BIGINT,
"previous_points" DOUBLE,
"weeknum" BIGINT,
"monthnum" BIGINT,
"yearnum" BIGINT
);
CREATE TABLE ittf_rankings_women (
"rank" BIGINT,
"previous" DOUBLE,
"id" BIGINT,
"assoc" VARCHAR,
"gender" VARCHAR,
"name" VARCHAR,
"points" BIGINT,
"previous_points" DOUBLE,
"weeknum" BIGINT,
"monthnum" BIGINT,
"yearnum" BIGINT
);
Anyone who has the link will be able to view this.