## ---- include = FALSE--------------------------------------------------------- knitr::opts_chunk$set( collapse = TRUE, comment = "#>" ) options(dplyr.summarise.inform = FALSE, rmarkdown.html_vignette.check_title = FALSE) eval <- TRUE tryCatch(expr = { download.file("https://github.com/ffverse/ffscrapr-tests/archive/1.4.7.zip","f.zip") unzip('f.zip', exdir = ".") httptest::.mockPaths(new = "ffscrapr-tests-1.4.7")}, warning = function(e) eval <<- FALSE, error = function(e) eval <<- FALSE) httptest::use_mock_api() ## ----setup, message = FALSE, eval = eval-------------------------------------- library(ffscrapr) library(dplyr) library(purrr) library(glue) ## ----eval = eval-------------------------------------------------------------- sport <- "NFL" league_id <- 206154 season <- 2020 week <- 5 response_scoreboard <- fleaflicker_getendpoint("FetchLeagueScoreboard", sport = sport, league_id = league_id, season = season, scoring_period = week) str(response_scoreboard, max.level = 1) ## ----eval = eval-------------------------------------------------------------- df_scoreboard <- response_scoreboard %>% purrr::pluck("content","games") %>% tibble::tibble() %>% tidyr::unnest_wider(1) %>% dplyr::mutate_at(c("away","home"),purrr::map_chr,purrr::pluck,"name") %>% dplyr::mutate_at(c("homeScore","awayScore"),purrr::map_dbl,purrr::pluck,"score","value") head(df_scoreboard) ## ----eval = eval-------------------------------------------------------------- # same variables as previous endpoint call! onegame_lineups <- fleaflicker_getendpoint( "FetchLeagueBoxscore", sport = sport, league_id = league_id, # example for one call, but you can call this in a map or loop! fantasy_game_id = df_scoreboard$id[[1]], scoring_period = week) %>% purrr::pluck('content','lineups') %>% tibble::tibble() %>% tidyr::unnest_wider(1) %>% tidyr::unnest_longer('slots') %>% tidyr::unnest_wider('slots') %>% tidyr::pivot_longer(c("home","away"),names_to = "franchise",values_to = "player") %>% tidyr::unnest_wider('player') str(onegame_lineups,max.level = 2) ## ----include = FALSE---------------------------------------------------------- httptest::stop_mocking() unlink(c("ffscrapr-tests-1.4.7","f.zip"), recursive = TRUE, force = TRUE)