You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
The 2024 pitch-by-pitch files for the CPX appear to be incomplete, missing about 2/3rd of the game data. the 2023 pbp files are complete, however.
Describe the bug
The 2024 pitch-by-pitch files for the CPX appear to be incomplete, missing about 2/3rd of the game data. the 2023 pbp files are complete, however.
To Reproduce
As an example, pull the data for May 8th, game_pk 772202 (https://www.milb.com/gameday/fcl-marlins-vs-fcl-astros/2024/05/08/772202/final/summary/all). Most of the game data is missing from the pbp file.
gameids <- map_df(.x = seq.Date(as.Date('2024-05-08'),
as.Date('2024-05-08'),
'day'),
~get_game_pks_mlb(date = .x,
level_ids = c(1,11,12,13,14,16))
)
df <- map(.x = gameids_check %>%
filter(officialDate== "2024-05-08") %>%
pull(game_pk),
~safe_milb(game_pk = .x)) %>%
map('result') %>%
bind_rows()
filter(df, game_pk == 772202)
The game pbp file only inlcudes 16 PA whereas it should have like 70
The text was updated successfully, but these errors were encountered: