Premier League Players Performance Analysis
INTRODUCTION
This assignment aims to analyze the attacking performance of five elite Premier League players: Haaland, Salah, Palmer, Son, and Saka using the statistics covering goals, assists, and shots split by home and away fixtures at a given period of the season.We seek to identify meaningful patterns in finishing efficiency and goal contribution across different venues(Home/Away).
APPROACH
To conduct the analysis of the dataset, i will implement a structured data science pipeline using the “tidyverse” framework as followed:
Create the data table in R and commit to an existing GitHub repository ensuring its accessibility at anytime.
Reshape the raw data from wide to tidy (long) format using
pivot_longer(), separating each statistic by venue (Home/Away)Shot conversion rate
- Compare the players Shot conversion rate by calculating as total goals divided by total shots
- visualised as a ranked bar chart using
ggplot2and a group-average reference line. - Interpretation
- Goal contribution comparison (Home vs Away)
- Compute by summing goals and assists per venue
- displayed as a grouped bar chart to expose venue-dependent performance patterns
- Interpretation
- CONCLUSION