Loads combine data since 2000 courtesy of PFR.
Usage
load_combine(
seasons = TRUE,
file_type = getOption("nflreadr.prefer", default = "rds")
)
Arguments
- seasons
a numeric vector of seasons to return, default
TRUE
returns all available data- file_type
One of
c("rds", "qs", "csv", "parquet")
. Can also be set globally withoptions(nflreadr.prefer)
See also
Issues with this data should be filed here: https://github.com/nflverse/nflverse-data
https://nflreadr.nflverse.com/articles/dictionary_combine.html for a web version of the dictionary
dictionary_combine
for the data dictionary as bundled within the package
Examples
# \donttest{
try({ # prevents cran errors
load_combine()
})
#> ── nflverse combine measurements ───────────────────────────────────────────────
#> ℹ Data updated: 2022-05-17 13:59:53 UTC
#> # A tibble: 7,680 × 18
#> season draft_year draft_…¹ draft…² draft…³ pfr_id cfb_id playe…⁴ pos school
#> <int> <dbl> <chr> <dbl> <dbl> <chr> <chr> <chr> <chr> <chr>
#> 1 2000 2000 New Yor… 1 13 AbraJ… NA John A… OLB South…
#> 2 2000 2000 Seattle… 1 19 AlexS… shaun… Shaun … RB Alaba…
#> 3 2000 2000 Kansas … 6 188 AlfoD… NA Darnel… OT Bosto…
#> 4 2000 NA NA NA NA NA NA Kyle A… TE Texas…
#> 5 2000 2000 Carolin… 1 23 AndeR… NA Rashar… CB Jacks…
#> 6 2000 NA NA NA NA arian… NA Jake A… K Ala-B…
#> 7 2000 2000 Washing… 1 2 ArriL… lavar… LaVar … OLB Penn …
#> 8 2000 NA NA NA NA AtkiC… NA Corey … OLB South…
#> 9 2000 NA NA NA NA NA NA Kyle A… K Baylor
#> 10 2000 2000 Chicago… 4 125 AustR… NA Reggie… CB Wake …
#> # … with 7,670 more rows, 8 more variables: ht <chr>, wt <dbl>, forty <dbl>,
#> # bench <dbl>, vertical <dbl>, broad_jump <dbl>, cone <dbl>, shuttle <dbl>,
#> # and abbreviated variable names ¹draft_team, ²draft_round, ³draft_ovr,
#> # ⁴player_name
# }