Big 3 Stats

Playing with Tableau dashboard

on August 04, 2022 · 1 min read

I try to post once a week but juggling a full time job, watching a toddler, and doing chores around the house, it’s tough to find spare time to do this (unless I give up sleep). Anyway, enough of my complaints. For this entry, I’m doing some simple analysis of the Holy Trinity of men’s tennis. I just watched some Youtube videos on how to make a Talbeau dashboard so I’m putting what I learned into practice.

Again, the data is from Jeff Sackman’s repository. The SQL query for this is:

SELECT *
FROM atp_matches
WHERE winner_name  IN ('Roger Federer', 'Rafael Nadal', 'Novak Djokovic') 
OR loser_name IN ('Roger Federer','Rafael Nadal', 'Novak Djokovic')

And here is the result

One of the advice in the videos is to keep it simple, so I’m starting out with just four visualization for now. As you can see this dashboard already look a bit too busy for my liking. As I learn more and get better I will update this to make it look more ‘professional’.

The dashboard is straightforward enough. There’s the title count for the big tournaments. Only the Slams are shown for now but there’s option to show the Master 1000s and smaller tournaments too. But showing everything will make it super crowded. Then there’s animated graph showing Federer, Nadal, and Djokovic climing up the rank throughout the years. And finally the win/loss records against their biggest rivals.