Baselight

ITTF Table Tennis Player Rankings And Information

ITTF Table tennis rankings 2001-2020 + player information

@kaggle.romanzdk_ittf_table_tennis_player_rankings_and_information

Loading...
Loading...

About this Dataset

ITTF Table Tennis Player Rankings And Information

Context

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.

Content

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

Tables

Ittf Player Info

@kaggle.romanzdk_ittf_table_tennis_player_rankings_and_information.ittf_player_info
  • 863.34 kB
  • 37,620 rows
  • 9 columns
Loading...
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
);

Ittf Rankings

@kaggle.romanzdk_ittf_table_tennis_player_rankings_and_information.ittf_rankings
  • 2.36 MB
  • 271,271 rows
  • 11 columns
Loading...
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
);

Ittf Rankings Women

@kaggle.romanzdk_ittf_table_tennis_player_rankings_and_information.ittf_rankings_women
  • 1.78 MB
  • 202,311 rows
  • 11 columns
Loading...
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
);

Share link

Anyone who has the link will be able to view this.