Merge branch 'master' of https://github.com/fivethirtyeight/data
This commit is contained in:
@@ -4,7 +4,9 @@ We hope you'll use it to check our work and to create stories and visualizations
|
||||
|
||||
Article Date(s) | Headline(s) | Folder
|
||||
---|---------|-------------
|
||||
June 2, 2012 | [FiveThirtyEight’s Women's World Cup Predictions](http://projects.fivethirtyeight.com/womens-world-cup/) | `womens-world-cup-predictions`
|
||||
June 5, 2015 | [Why Some Tennis Matches Take Forever](http://fivethirtyeight.com/features/why-some-tennis-matches-take-forever/) | `tennis-time`
|
||||
June 3, 2015 | [Where Police Have Killed Americans In 2015](http://fivethirtyeight.com/features/where-police-have-killed-americans-in-2015) | `police-killings`
|
||||
June 2, 2015 | [FiveThirtyEight’s Women's World Cup Predictions](http://projects.fivethirtyeight.com/womens-world-cup/) | `womens-world-cup-predictions`
|
||||
June 2, 2015 | [The Rock Isn’t Alone: Lots Of People Are Worried About ‘The Big One’](http://fivethirtyeight.com/datalab/the-rock-isnt-alone-lots-of-people-are-worried-about-the-big-one) | `san-andreas`
|
||||
May 29, 2015 | [How To Break FIFA](http://fivethirtyeight.com/features/how-to-break-fifa/) | `fifa`
|
||||
May 21, 2015 | [Complete History Of The NBA](http://fivethirtyeight.com/interactives/the-complete-history-of-every-nba-team-by-elo) | `nba-elo`
|
||||
@@ -51,4 +53,4 @@ April 14, 2014 | [A Statistical Analysis of the Work of Bob Ross](http://fivethi
|
||||
April 11, 2014 | [Where Are America’s Librarians?](http://fivethirtyeight.com/datalab/where-are-americas-librarians) | `librarians`
|
||||
April 1, 2014 | [The Dollar-And-Cents Case Against Hollywood’s Exclusion of Women](http://fivethirtyeight.com/features/the-dollar-and-cents-case-against-hollywoods-exclusion-of-women) | `bechdel`
|
||||
March 27, 2014 | [The NCAA Bracket: Checking Our Work](http://fivethirtyeight.com/datalab/the-ncaa-bracket-checking-our-work) | `historical-ncaa-forecasts`
|
||||
March 17, 2014 | [FiveThirtyEight’s NCAA Tournament Predictions](http://fivethirtyeight.com/interactives/march-madness-predictions) | `march-madness-predictions`
|
||||
March 17, 2014 | [FiveThirtyEight’s NCAA Tournament Predictions](http://fivethirtyeight.com/interactives/march-madness-predictions) | `march-madness-predictions`
|
||||
|
||||
File diff suppressed because one or more lines are too long
56
police-killings/README.md
Normal file
56
police-killings/README.md
Normal file
@@ -0,0 +1,56 @@
|
||||
### Police Killings
|
||||
|
||||
This directory contains the data behind the story [Where Police Have Killed Americans In 2015](http://fivethirtyeight.com/features/where-police-have-killed-americans-in-2015).
|
||||
|
||||
We linked entries from the [Guardian's database on police killings](http://www.theguardian.com/us-news/ng-interactive/2015/jun/01/the-counted-map-us-police-killings) to census data from the American Community Survey. The Guardian data was downloaded on June 2, 2015. More information about its database is available [here](http://www.theguardian.com/us-news/ng-interactive/2015/jun/01/about-the-counted).
|
||||
|
||||
Census data was calculated at the tract level from the 2015 5-year American Community Survey using the tables `S0601 (demographics)`, `S1901 (tract-level income and poverty)`, `S1701 (employment and education)` and `DP03 (county-level income)`. Census tracts were determined by geocoding addresses to latitude/longitude using the Bing Maps and Google Maps APIs and then overlaying points onto 2014 census tracts. GEOIDs are census-standard and should be easily joinable to other ACS tables -- let us know if you find anything interesting.
|
||||
|
||||
Field descriptions:
|
||||
|
||||
Header | Description | Source
|
||||
---|-----------|----
|
||||
`name` | Name of deceased | Guardian
|
||||
`age` | Age of deceased | Guardian
|
||||
`gender` | Gender of deceased | Guardian
|
||||
`raceethnicity` | Race/ethnicity of deceased | Guardian
|
||||
`month` | Month of killing | Guardian
|
||||
`day` | Day of incident | Guardian
|
||||
`year` | Year of incident | Guardian
|
||||
`streetaddress` | Address/intersection where incident occurred | Guardian
|
||||
`city` | City where incident occurred | Guardian
|
||||
`state` | State where incident occurred | Guardian
|
||||
`latitude` | Latitude, geocoded from address |
|
||||
`longitude` | Longitude, geocoded from address |
|
||||
`state_fp` | State FIPS code | Census
|
||||
`county_fp` | County FIPS code | Census
|
||||
`tract_ce` | Tract ID code | Census
|
||||
`geo_id` | Combined tract ID code |
|
||||
`county_id` | Combined county ID code |
|
||||
`namelsad` | Tract description | Census
|
||||
`lawenforcementagency` | Agency involved in incident | Guardian
|
||||
`cause` | Cause of death | Guardian
|
||||
`armed` | How/whether deceased was armed | Guardian
|
||||
`pop` | Tract population | Census
|
||||
`share_white` | Share of pop that is non-Hispanic white | Census
|
||||
`share_bloack` | Share of pop that is black (alone, not in combination) | Census
|
||||
`share_hispanic` | Share of pop that is Hispanic/Latino (any race) | Census
|
||||
`p_income` | Tract-level median personal income | Census
|
||||
`h_income` | Tract-level median household income | Census
|
||||
`county_income` | County-level median household income | Census
|
||||
`comp_income` | `h_income` / `county_income` | Calculated from Census
|
||||
`county_bucket` | Household income, quintile within county | Calculated from Census
|
||||
`nat_bucket` | Household income, quintile nationally | Calculated from Census
|
||||
`pov` | Tract-level poverty rate (official) | Census
|
||||
`urate` | Tract-level unemployment rate | Calculated from Census
|
||||
`college` | Share of 25+ pop with BA or higher | Calculated from Census
|
||||
|
||||
<b>Note regarding income calculations:</b>
|
||||
|
||||
All income fields are in inflation-adjusted 2013 dollars.
|
||||
|
||||
`comp_income` is simply tract-level median household income as a share of county-level median household income.
|
||||
|
||||
`county_bucket` provides where the tract's median household income falls in the distribution (by quintile) of all tracts in the county. (1 indicates a tract falls in the poorest 20% of tracts within the county.) Distribution is not weighted by population.
|
||||
|
||||
`nat_bucket` is the same but for all U.S. counties.
|
||||
1
police-killings/police_killings.csv
Normal file
1
police-killings/police_killings.csv
Normal file
File diff suppressed because one or more lines are too long
31
tennis-time/README.md
Normal file
31
tennis-time/README.md
Normal file
@@ -0,0 +1,31 @@
|
||||
### Tennis Time
|
||||
|
||||
The data behind the story [Why Some Tennis Matches Take Forever](http://fivethirtyeight.com/features/why-some-tennis-matches-take-forever).
|
||||
|
||||
`serve_times.csv`
|
||||
|
||||
Header | Definition
|
||||
--- | ---
|
||||
`server` | Name of player serving at 2015 French Open
|
||||
`seconds_before_next_point` | Time in seconds between end of marked point and next serve, timed by stopwatch app
|
||||
`day` | Date
|
||||
`opponent` | Opponent, receiving serve
|
||||
`game_score` | Score in the current game during the timed interval between points
|
||||
`set` | Set number, out of five
|
||||
`game` | Score in games within the set
|
||||
|
||||
`players_time.csv`
|
||||
|
||||
Header | Definition
|
||||
--- | ---
|
||||
`player` | Player name
|
||||
`seconds_added_per_point` | Weighted average of seconds added per point as loser and winner of matches, 1991-2015, from regression model controlling for tournament, surface, year and other factors
|
||||
|
||||
`events_time.csv`
|
||||
|
||||
Header | Definition
|
||||
--- | ---
|
||||
`tournament` | Name of event
|
||||
`surface` | Court surface used at the event
|
||||
`seconds_added_per_point` | Seconds added per point for this event on this surface in years shown, from regression model controlling for players, year and other factors
|
||||
`years` | Start and end years for data used from this tournament in regression
|
||||
206
tennis-time/events_time.csv
Normal file
206
tennis-time/events_time.csv
Normal file
@@ -0,0 +1,206 @@
|
||||
tournament,surface,seconds_added_per_point,years
|
||||
Wimbledon,Grass,-2.98,1991-2014
|
||||
London Olympics,Grass,-2.62,2012
|
||||
Manchester,Grass,-2.33,1991-1994
|
||||
Eastbourne,Grass,-1.78,2009-2014
|
||||
Birmingham,Carpet,-1.63,1991
|
||||
Queen's Club,Grass,-1.50,1991-2014
|
||||
Lyon,Hard,-1.35,2009
|
||||
Las Vegas,Hard,-1.32,2006-2008
|
||||
Stockholm Masters,Carpet,-0.90,1991-1994
|
||||
Nottingham,Grass,-0.82,1995-2008
|
||||
Orlando,Hard,-0.68,1991
|
||||
Tokyo Indoor,Carpet,-0.64,1991-1995
|
||||
Halle,Grass,-0.58,1993-2014
|
||||
Bogota,Clay,-0.57,1994-2001
|
||||
s-Hertogenbosch,Grass,-0.54,2008-2014
|
||||
Beijing,Carpet,-0.54,1993-1996
|
||||
Brussels,Carpet,-0.53,1991
|
||||
Chicago,Carpet,-0.52,1991
|
||||
Wellington,Hard,-0.44,1991-1992
|
||||
Newport,Grass,-0.35,1991-2014
|
||||
US Open,Hard,-0.17,1991-2014
|
||||
Montpellier,Hard,-0.16,2010-2015
|
||||
Bolzano,Carpet,-0.14,1992-1993
|
||||
Australian Open,Hard,-0.11,1991-2015
|
||||
Memphis,Hard,-0.02,1991-2015
|
||||
Bogota,Hard,0.08,2013-2014
|
||||
Rosmalen,Grass,0.17,1991-1997
|
||||
London,Carpet,0.27,1998-1999
|
||||
San Jose,Hard,0.28,1994-2013
|
||||
Antwerp,Carpet,0.29,1992-1996
|
||||
Stuttgart Masters,Carpet,0.30,1996-1997
|
||||
Sydney Indoor,Hard,0.30,1991-1994
|
||||
Paris Masters,Carpet,0.32,1991-2006
|
||||
Auckland,Hard,0.38,1991-2015
|
||||
Johannesburg,Hard,0.38,1992-2011
|
||||
Gstaad,Clay,0.44,1991-2014
|
||||
Durban,Hard,0.45,1993
|
||||
Sydney,Hard,0.46,1999-2015
|
||||
Copenhagen,Carpet,0.50,1991-1999
|
||||
Basel,Carpet,0.51,1997-2006
|
||||
Sydney Outdoor,Hard,0.52,1991-1998
|
||||
Seoul,Hard,0.53,1991-1996
|
||||
Milan,Carpet,0.55,1991-2005
|
||||
Stuttgart Indoor,Carpet,0.57,1991-1995
|
||||
Delray Beach,Hard,0.59,2000-2015
|
||||
Philadelphia,Carpet,0.59,1991-1996
|
||||
Metz,Hard,0.63,2003-2014
|
||||
Tour Finals,Carpet,0.63,1991-1996
|
||||
Moscow,Carpet,0.64,1991-2006
|
||||
Kuala Lumpur,Carpet,0.66,1994-1995
|
||||
New Haven,Hard,0.71,1991-2010
|
||||
Basel,Hard,0.73,1991-2014
|
||||
Scottsdale,Hard,0.79,1992-2005
|
||||
Roland Garros,Clay,0.79,1991-2014
|
||||
St. Petersburg,Carpet,0.80,1995-2007
|
||||
Berlin,Carpet,0.80,1991
|
||||
Tokyo Outdoor,Hard,0.81,1991-1995
|
||||
Paris Masters,Hard,0.82,2007-2014
|
||||
Adelaide,Hard,0.85,1991-2008
|
||||
Lyon,Carpet,0.86,1991-2008
|
||||
Stockholm,Hard,0.86,1995-2014
|
||||
St Petersburg,Carpet,0.87,1999
|
||||
Zaragoza,Carpet,0.91,1993-1994
|
||||
Zagreb,Carpet,0.92,1996-2007
|
||||
Winston-Salem,Hard,0.93,2011-2014
|
||||
Ostrava,Carpet,0.93,1994-1998
|
||||
Marseille,Hard,0.97,1996-2015
|
||||
Brighton,Hard,1.00,2000
|
||||
Bangkok,Hard,1.01,2003-2013
|
||||
Zagreb,Hard,1.02,2008-2015
|
||||
Moscow,Hard,1.10,2007-2014
|
||||
Cincinnati Masters,Hard,1.14,1991-2014
|
||||
San Francisco,Carpet,1.15,1991
|
||||
Mexico City,Clay,1.15,1993-2000
|
||||
London,Hard,1.16,2000
|
||||
Stuttgart Masters,Hard,1.17,1998-2001
|
||||
New Delhi,Hard,1.21,1996
|
||||
Shanghai Masters,Hard,1.21,2009-2014
|
||||
Tokyo,Hard,1.21,1996-2014
|
||||
Osaka,Hard,1.23,1993-1994
|
||||
Long Island,Hard,1.23,1991-2004
|
||||
Essen Masters,Carpet,1.25,1995
|
||||
Rotterdam,Hard,1.25,2000-2015
|
||||
Buzios,Hard,1.26,1991-1992
|
||||
Washington,Hard,1.30,1991-2014
|
||||
Shanghai,Carpet,1.30,1996-1998
|
||||
Singapore,Carpet,1.33,1996-1998
|
||||
Los Angeles,Hard,1.38,1991-2012
|
||||
Sao Paulo,Hard,1.40,1991-1992
|
||||
Copenhagen,Hard,1.43,2000-2003
|
||||
Split,Carpet,1.46,1998
|
||||
Marseille,Carpet,1.46,1993-1995
|
||||
San Francisco,Hard,1.46,1992-1993
|
||||
Indianapolis,Hard,1.47,1991-2009
|
||||
Rotterdam,Carpet,1.47,1991-1999
|
||||
Vienna,Carpet,1.53,1991-1998
|
||||
Canada Masters,Hard,1.54,1991-2014
|
||||
St. Petersburg,Hard,1.56,2000-2013
|
||||
Tashkent,Hard,1.58,1997-2002
|
||||
Dubai,Hard,1.58,1993-2015
|
||||
Bordeaux,Hard,1.62,1991-1995
|
||||
Brisbane,Hard,1.63,1991-2015
|
||||
Valencia,Hard,1.63,2009-2014
|
||||
Stuttgart,Clay,1.65,2001-2014
|
||||
Brasilia,Carpet,1.66,1991
|
||||
Madrid Masters,Hard,1.69,2002-2008
|
||||
Philadelphia,Hard,1.70,1997-1998
|
||||
Beijing,Hard,1.71,1997-2014
|
||||
Indian Wells Masters,Hard,1.72,1991-2015
|
||||
Toulouse,Hard,1.74,1991-2000
|
||||
Santiago,Clay,1.82,1993-2013
|
||||
Hong Kong,Hard,1.83,1991-2002
|
||||
Schenectady,Hard,1.84,1991-1994
|
||||
Vienna,Hard,1.84,1999-2014
|
||||
Miami Masters,Hard,1.90,1991-2015
|
||||
Power Horse Cup,Clay,1.93,2013
|
||||
Boston,Hard,1.98,1997-1999
|
||||
Kuala Lumpur,Hard,2.03,2009-2014
|
||||
Tel Aviv,Hard,2.07,1991-1996
|
||||
Sun City,Hard,2.09,1994
|
||||
Chennai,Hard,2.09,1997-2015
|
||||
Charlotte,Clay,2.11,1991-1993
|
||||
Atlanta,Clay,2.11,1992-2001
|
||||
Shenzhen,Hard,2.17,2014
|
||||
Stuttgart Outdoor,Clay,2.19,1991-2000
|
||||
Ho Chi Minh City,Carpet,2.20,2005
|
||||
Curitiba CH,Clay,2.25,2010
|
||||
Ecuador Open Quito,Clay,2.27,2015
|
||||
Kitzbuhel,Clay,2.30,1991-2014
|
||||
Munich,Clay,2.31,1991-2014
|
||||
Tour Finals,Hard,2.33,1997-2014
|
||||
Shanghai,Hard,2.38,1999-2004
|
||||
Doha,Hard,2.39,1993-2015
|
||||
Sopot - WS,Clay,2.40,2001
|
||||
Amsterdam,Clay,2.47,1995-2001
|
||||
Nice,Clay,2.53,1991-2014
|
||||
Madrid Masters,Clay,2.55,2009-2014
|
||||
Atlanta,Hard,2.55,2010-2014
|
||||
Houston,Clay,2.56,2001-2015
|
||||
St. Poelten,Clay,2.56,1994-2005
|
||||
Belgrade,Clay,2.58,2009-2012
|
||||
Tampa,Clay,2.61,1991-1993
|
||||
Poertschach,Clay,2.65,2006-2008
|
||||
Hamburg,Clay,2.70,2009-2014
|
||||
Delray Beach,Clay,2.74,1999
|
||||
Sopot,Clay,2.80,2002-2007
|
||||
Antwerp,Hard,2.82,1997-1998
|
||||
Hilversum,Clay,2.86,1991-1994
|
||||
Sao Paulo,Clay,2.86,1993-2015
|
||||
Bournemouth,Clay,2.88,1996-1999
|
||||
Guaruja,Hard,2.88,1991-1992
|
||||
Montevideo,Clay,2.89,1994-1995
|
||||
Bastad,Clay,2.91,1991-2014
|
||||
Valencia,Clay,2.92,1995-2008
|
||||
Amersfoort,Clay,2.93,2002-2008
|
||||
Hamburg Masters,Clay,2.94,1991-2008
|
||||
Singapore,Hard,2.96,1991-1999
|
||||
Barcelona,Clay,3.06,1991-2015
|
||||
Masters Cup,Hard,3.06,2000-2008
|
||||
Dusseldorf,Clay,3.10,1995-2014
|
||||
Orlando,Clay,3.13,1997-2000
|
||||
Casablanca,Clay,3.17,1992-2015
|
||||
Oahu,Hard,3.19,1994
|
||||
Beijing Olympics,Hard,3.21,2008
|
||||
Marbella,Clay,3.21,1996-1997
|
||||
Athens,Clay,3.25,1991-1994
|
||||
Estoril,Clay,3.26,1991-2014
|
||||
Coral Springs,Clay,3.26,1993-1998
|
||||
Bermuda,Clay,3.27,1995-1996
|
||||
Monte Carlo Masters,Clay,3.31,1991-2015
|
||||
Mallorca,Clay,3.32,1998-2002
|
||||
Umag,Clay,3.39,1991-2014
|
||||
Pinehurst,Clay,3.45,1994-1996
|
||||
San Marino,Clay,3.45,1991-2000
|
||||
Jakarta,Hard,3.45,1993-1996
|
||||
Geneva,Clay,3.47,1991
|
||||
Mumbai,Hard,3.50,2006-2007
|
||||
Acapulco,Clay,3.53,2001-2013
|
||||
Warsaw,Clay,3.58,2008
|
||||
Madrid,Clay,3.61,1991-1994
|
||||
Buenos Aires,Clay,3.62,1993-2015
|
||||
Masters Cup,Carpet,3.64,2005
|
||||
Cologne,Clay,3.67,1992
|
||||
Acapulco,Hard,3.71,2014-2015
|
||||
Costa Do Sauipe,Hard,3.72,2001-2003
|
||||
Taipei,Carpet,3.90,1992
|
||||
Vina del Mar,Clay,3.94,2001-2014
|
||||
Palermo,Clay,3.98,1991-2006
|
||||
Rome Masters,Clay,4.09,1991-2014
|
||||
Bordeaux,Clay,4.11,1992
|
||||
Bucharest,Clay,4.14,1993-2015
|
||||
Kuala Lumpur-2,Hard,4.18,1993
|
||||
Kuala Lumpur-1,Hard,4.20,1993
|
||||
Prague,Clay,4.29,1991-1999
|
||||
Rio de Janeiro,Clay,4.40,2014
|
||||
Birmingham,Clay,4.49,1994
|
||||
Oporto,Clay,4.69,1995-1996
|
||||
Genova,Clay,4.71,1991-1993
|
||||
Bologna,Clay,4.74,1991-1998
|
||||
Merano,Clay,4.93,1999
|
||||
Viña del Mar,Clay,4.96,2009
|
||||
Florence,Clay,5.08,1991-1994
|
||||
Costa Do Sauipe,Clay,5.19,2004-2011
|
||||
Maceio,Clay,5.28,1992
|
||||
Rio Open,Clay,5.38,2015
|
||||
|
219
tennis-time/players_time.csv
Normal file
219
tennis-time/players_time.csv
Normal file
@@ -0,0 +1,219 @@
|
||||
player,seconds_added_per_point
|
||||
Dustin Brown,-6.37
|
||||
Rohan Bopanna,-4.95
|
||||
Chris Guccione,-4.63
|
||||
Benoit Paire,-4.56
|
||||
Lukas Dlouhy,-4.35
|
||||
Brendan Evans,-4.25
|
||||
Igor Sijsling,-4.19
|
||||
Lukas Rosol,-4.13
|
||||
Alexander Kudryavtsev,-4.05
|
||||
Sam Querrey,-3.99
|
||||
Carsten Ball,-3.99
|
||||
Kristian Pless,-3.95
|
||||
Alexandr Dolgopolov,-3.73
|
||||
Peter Wessels,-3.61
|
||||
Robert Kendrick,-3.57
|
||||
Daniel Brands,-3.54
|
||||
Bernard Tomic,-3.54
|
||||
Zack Fleishman,-3.48
|
||||
Ivo Minar,-3.38
|
||||
James Blake,-3.36
|
||||
Eric Prodon,-3.18
|
||||
Goran Ivanisevic,-3.15
|
||||
Florian Mayer,-3.15
|
||||
Nick Kyrgios,-3.15
|
||||
Samuel Groth,-2.84
|
||||
Todd Reid,-2.84
|
||||
Stephane Robert,-2.82
|
||||
Juan Balcells,-2.80
|
||||
Andrei Olhovskiy,-2.78
|
||||
Alberto Berasategui,-2.77
|
||||
Robby Ginepri,-2.73
|
||||
Wayne Arthurs,-2.72
|
||||
Frank Dancevic,-2.54
|
||||
Kevin Kim,-2.53
|
||||
Jan Hajek,-2.45
|
||||
Roger Federer,-2.43
|
||||
Taylor Dent,-2.43
|
||||
Andrey Kuznetsov,-2.40
|
||||
Jeff Morrison,-2.39
|
||||
John Isner,-2.33
|
||||
Marc Kevin Goellner,-2.31
|
||||
Ricardas Berankis,-2.30
|
||||
Michael Llodra,-2.27
|
||||
Florent Serra,-2.25
|
||||
Jiri Novak,-2.24
|
||||
Andres Gomez,-2.21
|
||||
Matthias Bachinger,-2.16
|
||||
Ivo Karlovic,-2.12
|
||||
Gary Muller,-2.09
|
||||
Amer Delic,-2.09
|
||||
Magnus Larsson,-2.08
|
||||
Michal Tabara,-2.01
|
||||
Nicolas Almagro,-2.01
|
||||
Robin Haase,-1.97
|
||||
Harel Levy,-1.95
|
||||
Christophe Rochus,-1.94
|
||||
Thierry Ascione,-1.94
|
||||
Robin Soderling,-1.91
|
||||
Mischa Zverev,-1.89
|
||||
Jordi Burillo,-1.88
|
||||
Philipp Petzschner,-1.88
|
||||
Jarkko Nieminen,-1.76
|
||||
Filip Dewulf,-1.74
|
||||
Jan Kroslak,-1.74
|
||||
Daniel Gimeno Traver,-1.64
|
||||
Greg Rusedski,-1.59
|
||||
Donald Young,-1.55
|
||||
Bohdan Ulihrach,-1.55
|
||||
Feliciano Lopez,-1.49
|
||||
Filippo Volandri,-1.42
|
||||
Gustavo Kuerten,-1.41
|
||||
Stefan Koubek,-1.40
|
||||
Fabio Fognini,-1.40
|
||||
Richard Krajicek,-1.30
|
||||
Jakob Hlasek,-1.26
|
||||
Albert Montanes,-1.23
|
||||
Juan Carlos Ferrero,1.21
|
||||
Rainer Schuettler,1.32
|
||||
Ronald Agenor,1.36
|
||||
Sjeng Schalken,1.37
|
||||
Marin Cilic,1.38
|
||||
Todd Martin,1.41
|
||||
Mikhail Youzhny,1.42
|
||||
Jamie Morgan,1.46
|
||||
Arnaud Boetsch,1.49
|
||||
Bernd Karbacher,1.49
|
||||
Nikolay Davydenko,1.52
|
||||
Henrik Holm,1.52
|
||||
Andrea Gaudenzi,1.57
|
||||
Sargis Sargsian,1.57
|
||||
Jean Rene Lisnard,1.58
|
||||
Martin Damm,1.60
|
||||
Guy Forget,1.61
|
||||
Christian Bergstrom,1.62
|
||||
Gaston Gaudio,1.63
|
||||
Albert Costa,1.65
|
||||
Alex Calatrava,1.67
|
||||
Jerome Golmard,1.68
|
||||
Todd Woodbridge,1.76
|
||||
Patrick Rafter,1.78
|
||||
Mark Woodforde,1.82
|
||||
Janko Tipsarevic,1.83
|
||||
Sebastien Grosjean,1.86
|
||||
Stefano Pescosolido,1.87
|
||||
Mariano Zabaleta,1.87
|
||||
Lars Burgsmuller,1.87
|
||||
Juan Monaco,1.89
|
||||
Karol Kucera,1.95
|
||||
Omar Camporese,1.96
|
||||
Felix Mantilla,1.97
|
||||
Pablo Andujar,2.00
|
||||
Emilio Benfele Alvarez,2.00
|
||||
Guillermo Garcia Lopez,2.04
|
||||
Brett Steven,2.09
|
||||
Nicklas Kulti,2.10
|
||||
Juan Antonio Marin,2.11
|
||||
Oscar Hernandez,2.12
|
||||
Mario Ancic,2.13
|
||||
Thierry Champion,2.13
|
||||
Markus Zoecke,2.15
|
||||
Anders Jarryd,2.15
|
||||
Patrick Baur,2.16
|
||||
Blaz Kavcic,2.17
|
||||
Novak Djokovic,2.21
|
||||
Diego Nargiso,2.23
|
||||
Malivai Washington,2.24
|
||||
Patrick McEnroe,2.25
|
||||
Wayne Black,2.25
|
||||
Magnus Norman,2.28
|
||||
Leonardo Lavalle,2.31
|
||||
Alex O'Brien,2.32
|
||||
Claudio Pistolesi,2.34
|
||||
Gianluca Pozzi,2.39
|
||||
Tim Henman,2.43
|
||||
Guillermo Coria,2.44
|
||||
Fabrice Santoro,2.44
|
||||
Lukasz Kubot,2.44
|
||||
Alexander Mronz,2.45
|
||||
Emilio Sanchez,2.45
|
||||
Jaime Oncins,2.50
|
||||
Andy Murray,2.53
|
||||
Marcel Granollers,2.53
|
||||
Horst Skoff,2.54
|
||||
Sebastien De Chaunac,2.57
|
||||
Daniel Orsanic,2.60
|
||||
Ruben Ramirez Hidalgo,2.61
|
||||
Danny Sapsford,2.62
|
||||
Luiz Mattar,2.63
|
||||
Paul Henri Mathieu,2.64
|
||||
Eyal Ran,2.65
|
||||
Flavio Saretta,2.69
|
||||
Cedric Pioline,2.71
|
||||
Marcos Aurelio Gorriz,2.74
|
||||
David Wheaton,2.78
|
||||
Joao Souza,2.80
|
||||
Marcelo Filippini,2.84
|
||||
Francisco Clavet,2.85
|
||||
Tomas Nydahl,2.85
|
||||
Todd Witsken,2.85
|
||||
Kenneth Carlsen,2.92
|
||||
Christian Ruud,2.96
|
||||
Daniel Koellerer,2.98
|
||||
George Bastl,3.01
|
||||
Brad Gilbert,3.05
|
||||
Gilad Bloom,3.05
|
||||
Horacio De La Pena,3.07
|
||||
Claudio Mezzadri,3.07
|
||||
Mark Koevermans,3.09
|
||||
Arnaud Clement,3.11
|
||||
Markus Naewie,3.13
|
||||
Bart Wuyts,3.16
|
||||
Borna Coric,3.18
|
||||
Lleyton Hewitt,3.22
|
||||
Juan Martin Del Potro,3.23
|
||||
Pablo Arraya,3.26
|
||||
Jim Grabb,3.27
|
||||
Mats Wilander,3.30
|
||||
Jordi Arrese,3.30
|
||||
Guillermo Canas,3.31
|
||||
Justin Gimelstob,3.32
|
||||
Lionel Roux,3.36
|
||||
Renzo Furlan,3.37
|
||||
Illya Marchenko,3.40
|
||||
Nicolas Kiefer,3.51
|
||||
Christo Van Rensburg,3.55
|
||||
Boris Becker,3.55
|
||||
Martin Jaite,3.63
|
||||
Marc Lopez,3.67
|
||||
Martin Vassallo Arguello,3.69
|
||||
Nicolas Lapentti,3.72
|
||||
Pat Cash,3.73
|
||||
Markus Hantschk,3.77
|
||||
Attila Savolt,3.81
|
||||
Shuzo Matsuoka,3.90
|
||||
Jean Philippe Fleurian,3.92
|
||||
Marcos Ondruska,3.93
|
||||
Gilbert Schaller,3.93
|
||||
Thierry Guardiola,3.97
|
||||
Carlos Berlocq,4.08
|
||||
Jan Frode Andersen,4.12
|
||||
Roberto Jabali,4.35
|
||||
Ivan Lendl,4.35
|
||||
Jim Courier,4.51
|
||||
Alex Corretja,4.64
|
||||
Thomas Hogstedt,4.77
|
||||
Hernan Gumy,4.86
|
||||
Jimmy Connors,4.90
|
||||
Andrei Cherkasov,4.92
|
||||
Michael Chang,4.94
|
||||
Joao Cunha Silva,5.10
|
||||
Julian Knowle,5.15
|
||||
John McEnroe,5.22
|
||||
Lucas Arnold Ker,5.35
|
||||
T.J. Middleton,5.60
|
||||
Martin Stringari,5.68
|
||||
Rafael Nadal,5.92
|
||||
Nicolas Massu,6.21
|
||||
Emanuel Couto,6.35
|
||||
|
121
tennis-time/serve_times.csv
Normal file
121
tennis-time/serve_times.csv
Normal file
@@ -0,0 +1,121 @@
|
||||
server,seconds_before_next_point,day,opponent,game_score,set,game
|
||||
Nicolas Almagro,22,28-May-15,Rafael Nadal,15-30,1,0-0
|
||||
Nicolas Almagro,19,28-May-15,Rafael Nadal,15-40,1,0-0
|
||||
Nicolas Almagro,23,28-May-15,Rafael Nadal,30-40,1,0-0
|
||||
Nicolas Almagro,24,28-May-15,Rafael Nadal,Deuce,1,0-0
|
||||
Nicolas Almagro,19,28-May-15,Rafael Nadal,Ad-in,1,0-0
|
||||
Pablo Andujar,34,28-May-15,Philipp Kohlschreiber,40-30,5,2-4
|
||||
Bernard Tomic,21,28-May-15,Thanasi Kokkinakis,30-40,3,0-1
|
||||
Bernard Tomic,17,28-May-15,Thanasi Kokkinakis,Deuce,3,0-1
|
||||
Bernard Tomic,17,28-May-15,Thanasi Kokkinakis,Ad-in,3,0-1
|
||||
Rafael Nadal,34,28-May-15,Nicolas Almagro,15-30,1,0-1
|
||||
Rafael Nadal,29,28-May-15,Nicolas Almagro,30-30,1,0-1
|
||||
Rafael Nadal,33,28-May-15,Nicolas Almagro,30-40,1,0-1
|
||||
Rafael Nadal,23,28-May-15,Nicolas Almagro,Deuce,1,0-1
|
||||
Rafael Nadal,27,28-May-15,Nicolas Almagro,Ad-in,1,0-1
|
||||
Pablo Andujar,26,28-May-15,Philipp Kohlschreiber,15-30,5,4-4
|
||||
Pablo Andujar,24,28-May-15,Philipp Kohlschreiber,30-30,5,4-4
|
||||
Pablo Andujar,32,28-May-15,Philipp Kohlschreiber,40-30,5,4-4
|
||||
Bernard Tomic,21,28-May-15,Thanasi Kokkinakis,15-40,3,1-2
|
||||
Bernard Tomic,15,28-May-15,Thanasi Kokkinakis,30-40,3,1-2
|
||||
Bernard Tomic,18,28-May-15,Thanasi Kokkinakis,Deuce,3,1-2
|
||||
Bernard Tomic,37,28-May-15,Thanasi Kokkinakis,Ad-out,3,1-2
|
||||
Pablo Andujar,38,28-May-15,Philipp Kohlschreiber,Deuce,5,4-4
|
||||
Pablo Andujar,31,28-May-15,Philipp Kohlschreiber,Ad-in,5,4-4
|
||||
Nicolas Almagro,22,28-May-15,Rafael Nadal,15-0,1,1-3
|
||||
Nicolas Almagro,24,28-May-15,Rafael Nadal,30-0,1,1-3
|
||||
Nicolas Almagro,22,28-May-15,Rafael Nadal,40-0,1,1-3
|
||||
Nicolas Almagro,20,28-May-15,Rafael Nadal,30-40,2,3-5
|
||||
Andrey Kuznetsov,16,28-May-15,Jurgen Melzer,15-0,3,2-2
|
||||
Andrey Kuznetsov,19,28-May-15,Jurgen Melzer,30-0,3,2-2
|
||||
Andrey Kuznetsov,20,28-May-15,Jurgen Melzer,30-15,3,2-2
|
||||
Andrey Kuznetsov,15,28-May-15,Jurgen Melzer,40-15,3,2-2
|
||||
Rafael Nadal,27,28-May-15,Nicolas Almagro,40-0,3,5-1
|
||||
Andy Murray,29,28-May-15,Joao Sousa,30-0,1,2-1
|
||||
Andy Murray,20,28-May-15,Joao Sousa,40-0,1,2-1
|
||||
Borna Coric,28,28-May-15,Tommy Robredo,Ad-out,1,5-4
|
||||
Borna Coric,25,28-May-15,Tommy Robredo,Deuce,1,5-4
|
||||
Borna Coric,29,28-May-15,Tommy Robredo,Ad-out,1,5-4
|
||||
Andy Murray,18,28-May-15,Joao Sousa,40-0,3,0-1
|
||||
Andy Murray,20,28-May-15,Joao Sousa,40-15,3,0-1
|
||||
Andy Murray,23,28-May-15,Joao Sousa,40-30,3,0-1
|
||||
Andy Murray,22,28-May-15,Joao Sousa,Deuce,3,0-1
|
||||
Novak Djokovic,16,28-May-15,Gilles Muller,15-0,3,2-1
|
||||
Novak Djokovic,13,28-May-15,Gilles Muller,30-0,3,2-1
|
||||
Novak Djokovic,14,28-May-15,Gilles Muller,40-0,3,2-1
|
||||
Novak Djokovic,21,28-May-15,Gilles Muller,40-15,3,2-1
|
||||
Borna Coric,36,28-May-15,Tommy Robredo,0-30,3,2-2
|
||||
Borna Coric,21,28-May-15,Tommy Robredo,15-30,3,2-2
|
||||
Borna Coric,22,28-May-15,Tommy Robredo,30-30,3,2-2
|
||||
John Isner,27,28-May-15,Jeremy Chardy,40-30,2,4-3
|
||||
Andy Murray,30,28-May-15,Joao Sousa,30-40,3,1-2
|
||||
Andy Murray,24,28-May-15,Joao Sousa,Deuce,3,1-2
|
||||
Andy Murray,30,28-May-15,Joao Sousa,Ad-out,3,1-2
|
||||
Andy Murray,21,28-May-15,Joao Sousa,Deuce,3,1-2
|
||||
John Isner,22,28-May-15,Jeremy Chardy,40-0,2,5-4
|
||||
Borna Coric,26,28-May-15,Tommy Robredo,0-30,3,4-2
|
||||
Carlos Berlocq,34,28-May-15,Richard Gasquet,15-30,2,0-1
|
||||
Carlos Berlocq,28,28-May-15,Richard Gasquet,15-40,2,0-1
|
||||
Daniel Gimeno Traver,15,28-May-15,David Ferrer,40-0,2,1-3
|
||||
Daniel Gimeno Traver,17,28-May-15,David Ferrer,0-15,2,2-4
|
||||
Daniel Gimeno Traver,26,28-May-15,David Ferrer,0-30,2,2-4
|
||||
Daniel Gimeno Traver,27,28-May-15,David Ferrer,15-30,2,2-4
|
||||
Daniel Gimeno Traver,27,28-May-15,David Ferrer,15-40,2,2-4
|
||||
Daniel Gimeno Traver,15,28-May-15,David Ferrer,30-40,2,2-4
|
||||
Carlos Berlocq,20,28-May-15,Richard Gasquet,15-15,3,0-0
|
||||
Carlos Berlocq,30,28-May-15,Richard Gasquet,15-30,3,0-0
|
||||
Carlos Berlocq,28,28-May-15,Richard Gasquet,15-40,3,0-0
|
||||
Carlos Berlocq,28,29-May-15,Richard Gasquet,30-30,5,0-3
|
||||
Carlos Berlocq,31,29-May-15,Richard Gasquet,40-30,5,0-3
|
||||
Lukas Rosol,15,29-May-15,Teymuraz Gabashvili,15-0,3,3-5
|
||||
Lukas Rosol,16,29-May-15,Teymuraz Gabashvili,15-15,3,3-5
|
||||
Lukas Rosol,15,29-May-15,Teymuraz Gabashvili,30-15,3,3-5
|
||||
Lukas Rosol,22,29-May-15,Teymuraz Gabashvili,30-30,3,3-5
|
||||
Lukas Rosol,26,29-May-15,Teymuraz Gabashvili,30-40,3,3-5
|
||||
Lukas Rosol,13,29-May-15,Teymuraz Gabashvili,Deuce,3,3-5
|
||||
Lukas Rosol,14,29-May-15,Teymuraz Gabashvili,Ad-in,3,3-5
|
||||
Carlos Berlocq,32,29-May-15,Richard Gasquet,15-40,5,1-4
|
||||
Roger Federer,15,29-May-15,Damir Dzumhur,15-15,2,5-2
|
||||
Roger Federer,15,29-May-15,Damir Dzumhur,30-15,2,5-2
|
||||
Roger Federer,14,29-May-15,Damir Dzumhur,30-30,2,5-2
|
||||
Roger Federer,22,29-May-15,Damir Dzumhur,30-40,2,5-2
|
||||
Roger Federer,17,29-May-15,Damir Dzumhur,Deuce,2,5-2
|
||||
Roger Federer,13,29-May-15,Damir Dzumhur,Ad-in,2,5-2
|
||||
Roger Federer,17,29-May-15,Damir Dzumhur,Deuce,2,5-2
|
||||
Roger Federer,18,29-May-15,Damir Dzumhur,Ad-out,2,5-2
|
||||
Roger Federer,15,29-May-15,Damir Dzumhur,0-15,3,3-1
|
||||
Roger Federer,15,29-May-15,Damir Dzumhur,15-15,3,3-1
|
||||
Roger Federer,18,29-May-15,Damir Dzumhur,15-30,3,3-1
|
||||
Roger Federer,17,29-May-15,Damir Dzumhur,30-30,3,3-1
|
||||
Roger Federer,12,29-May-15,Damir Dzumhur,40-30,3,3-1
|
||||
Roger Federer,13,29-May-15,Damir Dzumhur,30-15,3,4-2
|
||||
Roger Federer,16,29-May-15,Damir Dzumhur,40-15,3,4-2
|
||||
Roger Federer,23,29-May-15,Damir Dzumhur,40-30,3,4-2
|
||||
Benoit Paire,14,29-May-15,Tomas Berdych,30-0,1,0-5
|
||||
Benoit Paire,12,29-May-15,Tomas Berdych,30-15,1,0-5
|
||||
Benoit Paire,11,29-May-15,Tomas Berdych,40-15,1,0-5
|
||||
Benoit Paire,19,29-May-15,Tomas Berdych,40-30,1,0-5
|
||||
Benoit Paire,12,29-May-15,Tomas Berdych,Deuce,1,0-5
|
||||
Benoit Paire,16,29-May-15,Tomas Berdych,Ad-in,1,0-5
|
||||
Benoit Paire,12,29-May-15,Tomas Berdych,30-15,2,0-0
|
||||
Benoit Paire,16,29-May-15,Tomas Berdych,40-15,2,0-0
|
||||
Benoit Paire,17,29-May-15,Tomas Berdych,40-30,2,0-0
|
||||
Nick Kyrgios,9,30-May-15,Andy Murray,0-15,3,2-2
|
||||
Nick Kyrgios,16,30-May-15,Andy Murray,15-15,3,2-2
|
||||
Nick Kyrgios,15,30-May-15,Andy Murray,15-30,3,2-2
|
||||
Nick Kyrgios,22,30-May-15,Andy Murray,30-30,3,2-2
|
||||
Nick Kyrgios,19,30-May-15,Andy Murray,40-30,3,2-2
|
||||
Nick Kyrgios,14,30-May-15,Andy Murray,0-40,3,3-3
|
||||
Nick Kyrgios,23,30-May-15,Andy Murray,15-40,3,3-3
|
||||
Nick Kyrgios,11,30-May-15,Andy Murray,15-15,3,3-3
|
||||
Nick Kyrgios,9,30-May-15,Andy Murray,15-30,3,3-3
|
||||
Nick Kyrgios,14,30-May-15,Andy Murray,30-30,3,3-3
|
||||
Nick Kyrgios,11,30-May-15,Andy Murray,40-30,3,3-3
|
||||
Nick Kyrgios,9,30-May-15,Andy Murray,Deuce,3,3-3
|
||||
Nick Kyrgios,14,30-May-15,Andy Murray,Ad-in,3,3-3
|
||||
Nick Kyrgios,13,30-May-15,Andy Murray,Deuce,3,3-3
|
||||
Nick Kyrgios,13,30-May-15,Andy Murray,Ad-out,3,3-3
|
||||
Nick Kyrgios,9,30-May-15,Andy Murray,Deuce,3,3-3
|
||||
Nick Kyrgios,12,30-May-15,Andy Murray,Ad-in,3,3-3
|
||||
Nick Kyrgios,24,30-May-15,Andy Murray,Deuce,3,3-3
|
||||
Nick Kyrgios,12,30-May-15,Andy Murray,Ad-out,3,3-3
|
||||
|
Reference in New Issue
Block a user