Note
Click here to download the full example code
Convex Hull¶
This example shows how to plot a convex hull around a player’s events.
Thanks to Devin Pleuler for adding this to mplsoccer.
from mplsoccer.statsbomb import read_event, EVENT_SLUG
from mplsoccer import Pitch
import matplotlib.pyplot as plt
# read data
df = read_event(f'{EVENT_SLUG}/7478.json',
related_event_df=False, shot_freeze_frame_df=False,
tactics_lineup_df=False)['event']
Filter passes by Jodie Taylor
df = df[(df.player_name == 'Jodie Taylor') & (df.type_name == 'Pass')].copy()
Plotting
pitch = Pitch()
fig, ax = pitch.draw(figsize=(8, 6))
hull = pitch.convexhull(df.x, df.y)
poly = pitch.polygon(hull, ax=ax, edgecolor='cornflowerblue', facecolor='cornflowerblue', alpha=0.3)
scatter = pitch.scatter(df.x, df.y, ax=ax, edgecolor='black', facecolor='cornflowerblue')
plt.show() # if you are not using a Jupyter notebook this is necessary to show the plot

Total running time of the script: ( 0 minutes 1.171 seconds)