Tennis - Big Three Matches
Match by match data of the big three
@kaggle.tariqph_tennis_big3
Match by match data of the big three
@kaggle.tariqph_tennis_big3
The dataset contains match by match records of the Big three in Tennis, namely, Roger Federer, Noviak Djokovic and Rafael Nadal. A table with mapping of the tour-level tournaments with their category(Grand Slam, ATP 1000 etc) is also provided.
CREATE TABLE djokovic (
"date" VARCHAR,
"tournament" VARCHAR,
"surface" VARCHAR,
"rd" VARCHAR,
"rk" DOUBLE,
"vrk" DOUBLE,
"result" VARCHAR,
"score" VARCHAR,
"dr" DOUBLE,
"a" VARCHAR -- A%,
"df" VARCHAR -- DF%,
"n_1stin" VARCHAR -- 1stIn,
"n_1st" VARCHAR -- 1st%,
"n_2nd" VARCHAR -- 2nd%,
"bpsvd" VARCHAR,
"time" VARCHAR
);
CREATE TABLE federer (
"date" VARCHAR,
"tournament" VARCHAR,
"surface" VARCHAR,
"rd" VARCHAR,
"rk" DOUBLE,
"vrk" DOUBLE,
"result" VARCHAR,
"score" VARCHAR,
"dr" VARCHAR,
"a" VARCHAR -- A%,
"df" VARCHAR -- DF%,
"n_1stin" VARCHAR -- 1stIn,
"n_1st" VARCHAR -- 1st%,
"n_2nd" VARCHAR -- 2nd%,
"bpsvd" VARCHAR,
"time" VARCHAR
);
CREATE TABLE nadal (
"date" VARCHAR,
"tournament" VARCHAR,
"surface" VARCHAR,
"rd" VARCHAR,
"rk" DOUBLE,
"vrk" DOUBLE,
"result" VARCHAR,
"score" VARCHAR,
"dr" DOUBLE,
"a" VARCHAR -- A%,
"df" VARCHAR -- DF%,
"n_1stin" VARCHAR -- 1stIn,
"n_1st" VARCHAR -- 1st%,
"n_2nd" VARCHAR -- 2nd%,
"bpsvd" VARCHAR,
"time" VARCHAR
);
CREATE TABLE tournaments (
"tournament" VARCHAR,
"category" VARCHAR
);
Anyone who has the link will be able to view this.