Building a tournament flow in a single-elimination & exponential tournament structure

Jan 8, 2019

Klaus Schulte

Ludovic Tavernier and I have spent quite some time on our collaboration project about the rise of tennis legend Boris Becker. One key element of our viz is something that we have called ‘bump trees‘, a two-layer chart that is combining (horizontal) tournament trees in the first layer with (vertical) bump lines to connect the different tournament trees of a player in the second layer (click the image to play with the interactive version and to read our entire data essay on Tableau Public).

bump-trees

The first step to create such bump trees is to build the tournament trees. In this post we want to share the steps and the process we went through to do this.

The Data

For our visualization we used Jeff Sackmann’s huge database (find the data here).

Let’s have a look at the data and at one randomly chosen tournament:

atp_matches_1985 2019-01-07 19-47-27

Most tennis tournaments are organized as single-elimination tournaments.

What does this mean?

Look at the draw_size in column D: it is 32, meaning that there are 32 players in the tournament. Then look at match_num in column G: the maximum match_num is 31. You need 31 matches to play-off 31 losers and the remaining lucky one who wins the tournament. This rule is valid for all draw-sizes.

The Data Prep

To create our tournament trees we first needed to do some data prep. Notice in the data, that each record has a winner and a loser. In our tournament tree we wanted to display both player types individually, therefore we had to pivot the data and got a field [Player Type]. Based on [Player Type] we were then able to calculate a [Player Id] and a [Player Name].

Tableau - Flows single-elimimination 2019-01-07 20-26-26.jpg

We also densified the data to get curved lines in our trees using this model:

tennis_model2 2019-01-08 11-08-05

This step added the field [Position Type] to our data and plotted 49 points for each record to get enough points to plot the shape of the curve.

That means for example: after data prep we had for each draw size 128 tournament the following number of records:

127 x 2 (Player Type) x 49 (Position Type) = 12,446 records

The Model

When we started working on the model to calculate the tournament trees, we quite soon realized that the whole flow and every position for every player id was in the match_num.

IMG_8212

The challenge was to convert this first draft into a scalable algorithm.

And that’s the result:

gif blog.gif

So let’s walk through this model step by step:

Step 1: Nb Round and Round Id

First of all, the positioning is depending on the different rounds of a tournament:

Tableau - Flows single-elimimination 2019-01-07 20-54-02

To calculate [Round Id] you first need the total number of rounds [Nb Round].

In a single-elimination and exponential tournament structure the number of games per round grows exponentially: 1 game in the final, 2 games in the semis, 4 games in the quarter-finals, etc. That’s why you can use the logarithm to calculate [Nb Round].

Dialog 2019-01-08 12-19-08.jpg

In a 128 draw size e. g.: 127 (max. Match Num) + 1 = 128 players => 2^7 => 7 rounds.

The [Round Id] for every match then can be calculated based on [Nb Rounds] and [Match Num].

Dialog 2019-01-08 12-16-55

We will need [Round Id] and [Nb Round] for the positioning on the x-axis and the y-axis.

Step 2: Position

The position of a player in the tree is depending on three factors, on [position.Round], [position.Match] and [position.Player].

position.png

position.Round

[position.Round] can be calculated based on [Nb Round] and [Round ID]:

Dialog 2019-01-08 12-18-07

position.Match

To calculate [position.Match] we first need a Match Id by round [Match ID.Round] that can be calculated based on [Match Num], [Nb Round], and [Round ID]:

Dialog 2019-01-08 12-19-53

This enabled us to calculate the position for each Match:

Dialog 2019-01-08 12-20-45

position.Player

The positioning of a player is depending on the round where a match takes place. For the first round we can position the players randomly. Thus we chose the [Player Id] and built an if-statement calculating a 0 for the player with the lower Id and a 1 for the other.

The positioning of a player in the next rounds is determined by the positioning in the first round. This position can be taken from the [Match Num] by calculating the minimum [Match Num] for every player as [Min_Match Id.Player]:

Dialog 2019-01-08 12-21-34

To have a consistent tournament tree a player with a lower [Match Num] in the first round always has to come first.

Dialog 2019-01-08 09-49-45

Based on this we were finally able to calculate [position.Player]:

Dialog 2019-01-08 09-51-34

position

[position] finally is just the sum of [position.Round], [position.Match], and [position.Player].

Dialog 2019-01-08 09-53-50

Resulting in these exemplary values:

Tableau - Flows single-elimimination 2019-01-08 09-56-29

Step 3: Y

Based on [position], [position_next], and [Sigmoid] we were now able to calculate the Y-values for our tournament trees.

[position_next] is telling our two lines for each player of a match where to go:

Dialog 2019-01-08 10-06-21

Using ‘AVG’ lets the lines end centrally between the two players.

Last step to calculate the Y-values is to bring in the Sigmoid function:

Dialog 2019-01-08 12-22-33.jpg

Bringing it all together is calculating our Y-values.

Dialog 2019-01-08 10-13-18

Step 4: X

Based on the [Round Id] and our [Position Type] (this densification thing) we can calculate the positioning on the x-axis.

If we had only [Position Type] on columns, our flows for the different rounds would all be stacked on top of each other:

gif

To ‘unstack’ our flows, we have to multiply them by [Round Id] and by the amplitude between maximum and minimum [Position Type] which is 12 in our case (6 – (-6)):

Dialog 2019-01-08 10-47-44.jpg

We also added a parameter [Gap for Text] to bring in some space between the flows for our labels.

Here you can see densification at work:

densification.gif

That’s it! Works perfect for all 16/32/64/128 draw sizes in single-elimination & exponential tournaments!

We hope you enjoyed reading and find own use cases for this! 🙂 You can find the workbook on Tableau Public.

Ludovic & Klaus