missing_raw_pbp {nflfastR} | R Documentation |
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),
verbose = TRUE
)
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. |
verbose |
If |
Value
A character vector of missing game IDs. If no files are missing,
returns NULL
invisibly.
See Also
Examples
try(
missing <- missing_raw_pbp(tempdir())
)
[Package nflfastR version 4.6.1 Index]