This document analyzes AFLW (Australian Football League Women’s) statistics for the 2024 season. To run this analysis, you’ll need:
Place these files in the SAME FOLDER as this R Markdown file: -
2024_Team_Stats.csv - Main statistics for all teams -
2023S8Summarycomparisons.csv - Historical comparison data -
WinVLoss2.xlsx - Win/loss records
Place these image files in the SAME FOLDER as this R Markdown file: -
Adelaide Crows.jpg - Brisbane.jpg -
Carlton.jpg - Collingwood.jpg -
Essendon.jpg - Fremantle.jpg -
Geelong.jpg - Gold Coast Suns.jpg -
GWS.jpg - Hawthorn.jpg -
Kangaroos.jpg - Melbourne.jpg -
Port Adelaide.jpg - Richmond.png (NOTE: This
one is .png, not .jpg) - St Kilda.jpg -
Sydney Swans.jpg - West Coast Eagles.jpg -
Western Bulldogs.jpg
Run this code ONCE before running the analysis (copy and paste into R console):
# Install packages - only need to do this once
install.packages(c(
"tidyverse", # Data manipulation and visualization
"dplyr", # Data manipulation
"ggplot2", # Plotting
"lubridate", # Date handling
"janitor", # Data cleaning
"forcats", # Factor handling
"reshape2", # Data reshaping
"expss", # Data labeling
"readxl", # Read Excel files
"plotly", # Interactive plots
"formattable", # Formatted tables
"esquisse", # Plot helper
"tinytex", # PDF output
"rmarkdown", # Markdown rendering
"gghighlight", # Highlighting in plots
"ggthemes", # Plot themes
"ggtext", # Enhanced text rendering
"tidyr", # Data tidying
"data.table", # Fast data manipulation
"magrittr" # Pipe operators
))
# For PDF output, also install tinytex
tinytex::install_tinytex()
This document provides a comprehensive statistical review of the AFLW 2024 Season (Season 9). The analysis covers:
All statistics represent season averages per game unless otherwise noted. Bars extend to the right for positive differentials and higher values.
What this measures: The ratio of behinds (1-point scores) to turnovers. A higher number indicates better ball retention and scoring accuracy relative to turnovers.
What this measures: The difference between a team’s inside 50 entries and their opponent’s inside 50 entries per game. Positive values mean more attacking opportunities.
What this measures: Average time per game (in minutes) that the ball is in the team’s forward half. More time = more offensive pressure.
What this measures: Average time per game (in minutes) that the team has possession of the ball. Higher values indicate better ball control.
What this measures: The difference between metres gained retained by the team versus the opponent. Positive values indicate better field position management.
What this measures: Percentage of inside 50 entries that result in a score. Higher values indicate more efficient forward line conversion.
What this measures: Average total points scored per game (Goals × 6 + Behinds × 1).
What this measures: Average points scored per game from opposition turnovers. Higher values indicate better conversion of defensive pressure.
What this measures: Average points scored per game from stoppage clearances. Higher values indicate effective clearance work.
What this measures: Average points scored per game from kick-in plays. Higher values indicate effective transition from defense.
What this measures: Difference between contested possessions won and contested possessions lost. Positive values indicate winning more contested ball.
What this measures: Contested possession differential before clearances. Shows ability to win ball at the contest source.
What this measures: Contested possession differential after clearances. Shows ability to win ball in general play.
What this measures: Difference between ground balls won and ground balls lost. Positive values indicate better at winning loose balls.
What this measures: Percentage of 1-on-1 contests won when the team has possession. Higher values indicate better individual contest skills.
What this measures: Percentage of 1-on-1 contests lost when opponent has possession. LOWER values are better (means defense is winning more contests).
What this measures: Difference between clearances won and clearances conceded. Positive values indicate winning more stoppages.
What this measures: Clearance differential from centre bounces specifically. Shows ability at center square stoppages.
What this measures: Clearance differential from ball-up stoppages (not centre bounces). Shows around-the-ground stoppage work.
What this measures: Clearance differential from boundary throw-ins. Shows effectiveness at boundary stoppages.
What this measures: Average pressure rating in the forward 50. Higher values indicate more defensive pressure applied.
What this measures: Percentage of tackles that result in a stoppage or turnover. Higher values indicate more effective tackling.
What this measures: Average intercept possessions in the forward half per game. Higher values indicate better defensive positioning.
What this measures: Average inside 50 entries conceded per game. LOWER values are better (means better defensive structure).
What this measures: Percentage of opponent’s inside 50 entries that result in a score. LOWER values are better (means better defensive pressure in 50).
This section provides detailed definitions of all statistics used in the analysis:
END OF REPORT