ATP Tennis Dataset
All pro tour matches compiled with multiple features from Jan. 2012 to Jul. 2017
@kaggle.m3financial_atp_tennis_data_from_201201_to_201707
All pro tour matches compiled with multiple features from Jan. 2012 to Jul. 2017
@kaggle.m3financial_atp_tennis_data_from_201201_to_201707
Need to maintain a database of ATP Tour data for forecasting and predictions, etc.
Retrieved data from online, but compiled file from 2012 to 2017 through 07/20/2017. Note that there are errors in some 2012 dates, but I revised the initial dataset as most recent version. Also, the W_Odds and L_Odds columns are averages of Odds taken from several online gaming sites including BetOnline365 and others.
Most recent data is usually updated weeks prior to all major grand slam events.
Compiled all useful data from the following link: http://tennis-data.co.uk/alldata.php
Building dataset for match prediction
CREATE TABLE atp_dataset_2012_01_to_2017_07_int_v4 (
"atp" BIGINT,
"tournament" VARCHAR,
"tournament_int" DOUBLE,
"date" BIGINT,
"series" VARCHAR,
"series_int" DOUBLE,
"court" VARCHAR,
"court_int" DOUBLE,
"surface" VARCHAR,
"surface_int" DOUBLE,
"round" VARCHAR,
"round_int" DOUBLE,
"best_of" BIGINT,
"winner" VARCHAR,
"winner_int" DOUBLE,
"player1" VARCHAR,
"player1_int" DOUBLE,
"player2" VARCHAR,
"player2_int" DOUBLE,
"player1_rank" DOUBLE,
"player2_rank" DOUBLE,
"player1_odds" DOUBLE,
"player2_odds" DOUBLE,
"player1_implied_prob" DOUBLE,
"player2_implied_prob" DOUBLE
);Anyone who has the link will be able to view this.