missing_raw_pbp: Compute Missing Raw PBP Data on Local Filesystem
Description
Uses nflreadr::load_schedules()
to load game IDs of finished games and
compares these IDs to all files saved under dir
.
This function is intended to serve as input for save_raw_pbp()
.
Usage
missing_raw_pbp(
dir = getOption("nflfastR.raw_directory", default = NULL),
seasons = TRUE,
verbose = TRUE
)
Value
A character vector of missing game IDs. If no files are missing,
returns NULL
invisibly.
Arguments
- dir
Path to local directory (defaults to option "nflfastR.raw_directory").
nflfastR will download the raw game files split by season into one sub
directory per season.
- seasons
a numeric vector of seasons to return, default TRUE
returns all available data.
- verbose
If TRUE
, will print number of missing game files as well as
oldest and most recent missing ID to console.
Examples
Run this code# \donttest{
try(
missing <- missing_raw_pbp(tempdir())
)
# }
Run the code above in your browser using DataLab