Skip to contents

Load Rosters

Usage

fast_scraper_roster(...)

Arguments

...

Arguments passed on to nflreadr::load_rosters

seasons

a numeric vector of seasons to return, defaults to returning this year's data if it is March or later. If set to TRUE, will return all available data. Data available back to 1920.

file_type

One of c("rds", "qs", "csv", "parquet"). Can also be set globally with options(nflreadr.prefer)

Value

A tibble of season-level roster data.

Details

See nflreadr::load_rosters for details.

See also

For information on parallel processing and progress updates please see nflfastR.

Examples

# \donttest{
# Roster of the 2019 and 2020 seasons
fast_scraper_roster(2019:2020)
#> ── nflverse roster data ────────────────────────────────────────────────────────
#>  Data updated: 2022-08-18 20:01:49 UTC
#> # A tibble: 6,428 × 36
#>    season team  position depth_chart_po…¹ jerse…² status full_…³ first…⁴ last_…⁵
#>     <int> <chr> <chr>    <chr>              <int> <chr>  <chr>   <chr>   <chr>  
#>  1   2019 ARI   DB       CB                    21 Active Patric… Patrick Peters…
#>  2   2019 ARI   DB       SS                    38 Active Chris … Ayorun… Banjo  
#>  3   2019 ARI   DB       CB                    23 NA     Robert… Robert  Alford 
#>  4   2019 ARI   DB       CB                    27 NA     Josh S… Josh    Shaw   
#>  5   2019 ARI   DB       CB                    26 NA     Brando… Brandon Willia…
#>  6   2019 ARI   DB       FS                    28 Active Charle… Charles Washin…
#>  7   2019 ARI   DB       CB                    34 NA     Duke T… Duke    Thomas 
#>  8   2019 ARI   DB       CB                    27 NA     Kevin … Kevin   Peters…
#>  9   2019 ARI   DB       CB                    22 NA     Trevor… Trevor  Willia…
#> 10   2019 ARI   DB       CB                    22 NA     Trevor… Trevor  Willia…
#> # … with 6,418 more rows, 27 more variables: birth_date <date>, height <chr>,
#> #   weight <int>, college <chr>, gsis_id <chr>, espn_id <chr>,
#> #   sportradar_id <chr>, yahoo_id <chr>, rotowire_id <chr>, pff_id <chr>,
#> #   pfr_id <chr>, fantasy_data_id <chr>, sleeper_id <chr>, years_exp <int>,
#> #   headshot_url <chr>, ngs_position <chr>, week <int>, game_type <chr>,
#> #   status_description_abbr <chr>, football_name <chr>, esb_id <chr>,
#> #   gsis_it_id <chr>, smart_id <chr>, entry_year <int>, rookie_year <int>, …
# }