by Owen Chugg
2025-11-02
by Owen Chugg
The Data set is the FC26 data from the game FC26 recieved from kaggle
The data set was created by finding the statstics of soccer players from the game
The data consists of the players name, height, weight, league, position, and overall value out of 100
We will explore player data through a series of visualizations to better understand trends and relationships within the dataset.
Using Plotly, I crated a 3D graph showing the top 5 ranked positions for the top 5 leagues in the dataset. The graph shows the average player rating along with the positions and league associated with the rating
In order to calculate the z-scores I used the formula to the standardized values. For example, when I was finding height i found the z-score by subtracting the height from the mean and then dividing by the standard deviation.
height_z = (height_cm - mean(height_cm, na.rm = TRUE)) / sd(height_cm, na.rm = TRUE) weight_z = (weight_kg - mean(weight_kg, na.rm = TRUE)) / sd(weight_kg, na.rm = TRUE)
In this graph, I wanted to see the percentageof which players come from which nation. It is interesting that most of the players come from Europe and South America but that makes sense since soccer is a big part of their culture.