Men's Singles Tennis Australia Open
Contains match details and each player's career history
@kaggle.definite007_tennis_australia_open
Contains match details and each player's career history
@kaggle.definite007_tennis_australia_open
This dataset contains all the match details of men's singles of Australia Open, along with the each participated player's career history. Best justified usage would be predicting winner of the tournament, or compare with the tournament's actual standings.
CREATE TABLE match_details (
"status" VARCHAR,
"date" VARCHAR,
"time" VARCHAR,
"match" VARCHAR,
"p1" VARCHAR,
"p1_profile" VARCHAR,
"p2" VARCHAR,
"p2_profile" VARCHAR
);CREATE TABLE player_stats (
"unnamed_0" BIGINT -- Unnamed: 0,
"name" VARCHAR,
"country" VARCHAR,
"birthdate" VARCHAR,
"age" VARCHAR,
"atp_ranking" DOUBLE,
"top_ranking_s_position" DOUBLE -- TOP Ranking\u0027s Position,
"points" DOUBLE,
"prize_money" VARCHAR,
"matches_total" BIGINT,
"win" BIGINT,
"n" VARCHAR -- %,
"height" VARCHAR,
"weight" VARCHAR,
"profi_since" DOUBLE
);Anyone who has the link will be able to view this.