This functions lists all nflverse data releases that are available
in the nflverse-data repo. Release names can be used for downloads in
nflverse_download()
.
Arguments
- .token
a GitHub API token,
"default"
usesgh::gh_token()
Value
A dataframe containing release names, release descriptions, and other relevant release information.
Examples
# \donttest{
try( # avoids cran failures, can skip in normal usage
nflverse_releases()
)
#> ── nflverse release listing ────────────────────────────────────────────────────
#> ℹ Data updated: 2025-10-01 11:54:46 UTC
#> # A tibble: 24 × 8
#> release_name release_description timestamp rds parquet csv csv_gz zip
#> <chr> <chr> <chr> <int> <int> <int> <int> <int>
#> 1 schedules NA 2025-10-… 1 0 0 0 0
#> 2 misc "Various bits of da… 2025-10-… 7 1 6 0 0
#> 3 stats_team NA 2025-10-… 107 107 107 107 0
#> 4 stats_player NA 2025-10-… 107 107 107 107 0
#> 5 pbp "Play by play data,… 2025-10-… 27 27 27 27 23
#> 6 espn_data "ESPN Stats" 2025-10-… 2 2 2 2 0
#> 7 players "Player information… 2025-10-… 1 1 1 1 0
#> 8 teams NA 2025-10-… 1 1 1 1 0
#> 9 contracts "OverTheCap contrac… 2025-10-… 2 1 0 1 0
#> 10 nextgen_stats "NFL Next Gen Stats… 2025-10-… 30 3 0 30 0
#> # ℹ 14 more rows
# }