jimmyday12 / fitzRoy

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

Scores for 2017 EF PA v WC Exclude Extra Time #171

Closed TonyCorke closed 1 month ago

TonyCorke commented 2 years ago

The Home.score and Away.score values for the 2017 EF between Port Adelaide and West Coast do not include extra time.

They are 60 and 60 rather than 76 and 78

library(fitzRoy)

dat <- get_afltables_stats(start_date = "2017-01-01", end_date = "2017-12-31")

dat %>% filter(Home.team == "Port Adelaide", Away.team == "West Coast", Round == "EF") %>% select(Home.score, Away.score) %>% unique()
jimmyday12 commented 1 month ago

https://github.com/jimmyday12/fitzRoy/pull/223