Skip to content

Instantly share code, notes, and snippets.

@mrcaseb
Created April 15, 2020 18:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrcaseb/0f868193affb4be152e8e82c43a4dc07 to your computer and use it in GitHub Desktop.
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.
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