Skip to main content

2019/20 for Exeter Chiefs in the Gallagher Premiership (so far) - featuring some TREEMAPS!!!

With the Gallagher Premiership returning from its extended break due to the Coronavirus this weekend I've dusted off some player stats for the first 13 rounds of the 2019/20 season.

As part of moving from 'analyst of data' to 'Data Scientist' I used a new tool (or rather perfect slightly something I've been playing with for a while), I've been toying with the R package "treemapify" to make some visualisations for a few months now and thought this might be a good use for them. 

Treemaps are very simple - the bigger the area the bigger the proportion of a total made up by that element. 

I think Rob Baxter's preference would be defence first so the first graphic shows the number of tackles made in the Premiership so far by each Chiefs player who has featured (nb this excludes missed tackles). 
Unsurprisingly the largest areas are those forwards who play the most and its reflective of how little the likes of Henry Slade and Jack Nowell have featured this season. 
Sam Simmonds has made the most tackles with 163 (with just 8 missed - he also has the highest tackle success rate of any player who has played for more than 30 mins), with Jonny Hill (125), Jacques Vermeulen (123), Jannes Kirsten (120) and Dave Ewers (119) also having made over 100 tackles. 
Notably both the fly halves (Gareth Steenson and Joe Simmonds) feature quite strongly for the backs, while the departed trio of Sam Hill, Nic White and Matt Kvesic have made significant contributions.
Putting the boot on the other statistical foot let's look at some attacking measures firstly carries made by each player. 
The incredible Sam Simmonds is once again leading the way and having carried 135 times, he's some way ahead of the others with Dave Ewers (104) and Tom O'Flaherty (102) the only other Chiefs playes to have carried 100 times so far in the Gallagher Premiership. Once again the departed trio of Sam Hill, Nic White and Matt Kvesic contributions to the first half of the season should not be downplayed. 
And finally this chart shows the metres gained in those carries. Suddenly the wingers & full backs start to feature with Tom O'Flaherty's 589 metres leading the way. Amazingly for a number 8 that man Sam Simmonds is in third place for metres gained.  
Technical bit:
This was compiled in R and the graphics are produced using Treemapify. In terms of the how to replicate this Treemapify documentation is excellent and really useful and possibly clear than my own code. However I've produced an extract of the code used for the tackles below

#aes for area, the fill colour (in this case based on the players most common position played in) and what I'm using as the labels
tacks_treemap <- ggplot(chiefs, aes(area=tacklesmade,fill=mode_pos,label=PLAYER))+
  #treemap object
  geom_treemap()+
  #add and format the label text (player names)
  geom_treemap_text(fontface = "italic", colour = "white", place = "centre",
                    grow = TRUE)+
  #nb this is my own theme object that I've created
  bs_tree_theme+
  #labels for the chart
  labs(title="Exeter Chiefs tackles made by player",subtitle='Gallagher Premiership 2019/20',
       fill = "Position")

Comments

Popular posts from this blog

How many points = automatic promotion in the football league?

Its very much that time of year, where for those of us with a vested interest any Saturday afternoon glance at some football scores leads onto some hurried mental arithmetic as we try and work out whether the season in which we've already invested emotionally and financially will end in glory or not. As a Luton Town fan I have some 'skin in the game' again this year, and therefore for the past few weeks I've been trying to work out whether or not the Hatters are on track for a second successive year.... what follows is some of my workings. How many points do you need to get promoted in the English Football League?  We'll start by comparing the points needed for the title and promotion in each of the EFL's three divisions and see whether any division is 'easier' to win (in terms of points scored, obviously the championship is the hardest to win from a purely footballing point of view). For the sake of simplicity throughout this blog I'll refer...

Are Scotland the new France?

The Stereotype We're probably all familiar with the stereotype of the mercurial French team who can go from the sublime to the ridiculous and back again, often within the same passage of play. That Gallic inconsistency is as much a part of watching France in the six nations as Eddie Butler's 'Hallo Hallo' accent. But are Scotland even more mercurial at the moment and thus arguably even more French? How to measure inconsistency? Measuring inconsistency is not that easy, if we want to show a eam is comparatively good (or bad) at something the stats will show them top (or bottom) when compared to their peers. In this case however we want to show them at both extremes as they go from world beaters to 15 blokes who met in the changing rooms before the game and back. Comebacks and 'Uneven Scoring' A really inconsistent team would be inconsistent within games, having one great half and one terrible half and you would expect many second half comebacks in the...