fetch_player_stats_afltables(season = 2024) does not return last three games of AFLTables Round 23
library(fitzRoy)
library(dplyr)
dat = fetch_player_stats_afltables(season = 2024)
dat %>% filter(Round == 23, Home.team == "Carlton" | Away.team == "Carlton") # returns nothing
dat %>% filter(Round == 23, Home.team == "Adelaide" | Away.team == "Adelaide") # returns nothing
dat %>% filter(Round == 23, Home.team == "Hawthorn" | Away.team == "Hawthorn") # returns nothing
dat %>% filter(Round == 23, Home.team == "Sydney" | Away.team == "Sydney") #returns as expected
fetch_player_stats_afltables(season = 2024) does not return last three games of AFLTables Round 23