There seems to be an issue with 2024 data - the year is missing on any games that do exist, but the last date that a game appears for 2024 is 11-11-2023.
Below is the result running:
cbd_torvik_player_game() %>%
group_by(year) %>%
summarise(count = n(),
last_date = last(date)) %>%
arrange(desc(last_date))
