Created
April 15, 2020 18:47
-
-
Save mrcaseb/0f868193affb4be152e8e82c43a4dc07 to your computer and use it in GitHub Desktop.
Function for scraping win probability data from the ESPN API. Outputs game_id, play_id and home_wp and should therefore be joinable to cfbscrapR data.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(dplyr) | |
get_espn_wp_college <- function(espn_game_id) { | |
espn_wp <- data.frame() | |
tryCatch( | |
expr = { | |
espn_wp <- | |
httr::GET(url = glue::glue("http://site.api.espn.com/apis/site/v2/sports/football/college-football/summary?event={espn_game_id}")) %>% | |
httr::content(as = "text", encoding = "UTF-8") %>% | |
jsonlite::fromJSON(flatten = TRUE) %>% | |
purrr::pluck("winprobability") %>% | |
janitor::clean_names() %>% | |
dplyr::mutate( | |
espn_game_id = stringr::str_sub(play_id, end = stringr::str_length(espn_game_id)) | |
) %>% | |
dplyr::select(espn_game_id, play_id, home_win_percentage) | |
message(glue::glue("{Sys.time()}: Scraping ESPN wp data for GameID '{espn_game_id}'...")) | |
}, | |
error = function(e) { | |
message(glue::glue("{Sys.time()}: GameID '{espn_game_id}' invalid or no wp data available!")) | |
}, | |
warning = function(w) { | |
}, | |
finally = { | |
} | |
) | |
return(espn_wp) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment