This function downloads precomputed expected points data from ffopportunity automated releases.
Usage
load_ff_opportunity(
seasons = most_recent_season(),
stat_type = c("weekly", "pbp_pass", "pbp_rush"),
model_version = c("latest", "v1.0.0")
)
Arguments
- seasons
a numeric vector of seasons to return, defaults to most recent season. If set to
TRUE
, returns all available data.- stat_type
one of
"weekly"
,"pbp_pass"
,"pbp_rush"
- model_version
one of
"latest"
or"v1.0.0"
See also
https://ffopportunity.ffverse.com for more on the package, data, and modelling
https://nflreadr.nflverse.com/articles/dictionary_ff_opportunity.html for the web data dictionary
dictionary_ff_opportunity
for the data dictionary bundled as a package data frame
Issues with this data should be filed here: https://github.com/ffverse/ffopportunity
Examples
# \donttest{
try({ # prevents cran errors
load_ff_opportunity()
load_ff_opportunity(seasons = 2021, type = "pbp_pass", version = "v1.0.0")
})
#> Error in load_ff_opportunity(seasons = 2021, type = "pbp_pass", version = "v1.0.0") :
#> unused arguments (type = "pbp_pass", version = "v1.0.0")
# }