jimmyday12 / fitzRoy

A set of functions to easily access AFL data
https://jimmyday12.github.io/fitzRoy
Other
126 stars 27 forks source link

Data input error for player IDs from AFL Tables #168

Closed jaidenpopowski closed 1 year ago

jaidenpopowski commented 2 years ago

Using 2021 data from AFL Tables gives two IDs for Eddie Ford (NM) and no ID for Brayden Cook (Adel). Eddie Ford has IDs 12922 AND 12932 and has replaced Brayden Cook's statistics wearing number 15 for the Crows.

EddieFord


afltables %>%
  select(season, round,date,first_name,surname,id,playing_for,jumper_no) %>%
  filter(first_name == "Eddie", surname == "Ford")
afltables %>%
  select(season, round,date, first_name,surname,id,playing_for, jumper_no) %>%
  filter(first_name == "Brayden", surname == "Cook")
broccoli29586 commented 2 years ago

Just come across the same thing. @jimmyday12 bugfix soon?

jimmyday12 commented 1 year ago

I'm going to try take a look at this one this weekend. These bugs in the legacy data are always tricky to nail down