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...

Most common scores in premiership rugby

I am well aware that the most common score in premiership rugby is a bit of a pointless metric. Yet it is interesting, to me at least and hopefully to you as well to take a brief look: As we saw previously the most common or mode score for all games is 20. This has happened 319 times in premiership rugby up to the end of the 2021/22 season.  Overall 4.67% of all premiership scores finished as 20, ironically almost 1 in 20. Of those 319 scorelines 20 has been scored 176 times by away teams (it is the most common away score) and by 143 at home teams. It is the second most popular home score, as 24 has been recorded by 147 home teams. 20 has been scored 191 times by a losing team and 128 times as a winning team. Though 20 is the most common score it is neither the most common winning or losing score (24 and 13 respectively). Nor is 20-20 the most common scoreline in drawn games either. 27-27 is the most common draw in premiership history (11 times or 22 scores). Looking at the da...