I have more time on my hands so thought it would be good fun to show some steps from creating creating scatters to plotting event data to show those that show up favourably in initial searches. The question that I posed myself was: "How can we go beyond scatters to learn more about a players output?" There has been an increase in scatter plots to show players that excel, however they don't tell the whole story. As always, I'm still learning code myself so I'm sure there is code in here that will upset experienced coders! Sorry! Anyway, a rough idea of how this will look - - download data from fbref.com - plot a scatter using the data - filter the top 9 performers for one parameter - plot the event data - compare the player outputs Lets goooooooooooo Lets fire up: library(StatsBombR) library(tidyverse) library(ggsoccer) library(ggrepel) We could create the P90 data for the WSL ourselves by using the StatsBomb data, however I'm being l...