Menu

Player Performance Analysis

Player Performance Analysis

One way to evaluate player performance is by counting Player of the Match awards.

Code

top_players = matches['player_of_match'].value_counts().head(10)

print(top_players)

Visualization

plt.figure(figsize=(10,5))

sns.barplot(

x=top_players.values,

y=top_players.index

)

plt.title("Top 10 Players with Most Player of the Match Awards")

plt.xlabel("Awards")

plt.ylabel("Player")

plt.show()

Explanation

This analysis identifies players who consistently delivered match-winning performances.