load_wbb_rosters_manifest() returns the per-season manifest
CSV (columns: season, row_count, generated_at_utc,
source_endpoint) describing which seasons are currently published to
the release tag, without downloading any season's full data.
Loads season-level team rosters scraped from ESPN. One row per
athlete-team-season triple. Backed by the wehoop-wbb-data pipeline that
reads raw JSONs from wehoop-wbb-raw and publishes parquet/rds artifacts
to the espn_womens_college_basketball_rosters release tag.
Usage
load_wbb_rosters_manifest()
load_wbb_rosters(
seasons = most_recent_wbb_season(),
...,
dbConnection = NULL,
tablename = NULL
)Arguments
- seasons
A vector of 4-digit years associated with given women's college basketball seasons. (Min: 2002)
- ...
Additional arguments passed to an underlying function that writes the season data into a database.
- dbConnection
A
DBIConnectionobject, as returned byDBI::dbConnect()- tablename
The name of the rosters data table within the database
Examples
# \donttest{
try(load_wbb_rosters(seasons = most_recent_wbb_season()))
#> ──────────────────────────────────────────────────────────────── wehoop 3.0.0 ──
#> # A tibble: 9,778 × 36
#> season team_id team_slug team_abbreviation team_display_name
#> <int> <int> <chr> <chr> <chr>
#> 1 2026 1 NA UAA Alaska Anchorage Seawolves
#> 2 2026 1 NA UAA Alaska Anchorage Seawolves
#> 3 2026 1 NA UAA Alaska Anchorage Seawolves
#> 4 2026 1 NA UAA Alaska Anchorage Seawolves
#> 5 2026 1 NA UAA Alaska Anchorage Seawolves
#> 6 2026 1 NA UAA Alaska Anchorage Seawolves
#> 7 2026 1 NA UAA Alaska Anchorage Seawolves
#> 8 2026 1 NA UAA Alaska Anchorage Seawolves
#> 9 2026 1 NA UAA Alaska Anchorage Seawolves
#> 10 2026 1 NA UAA Alaska Anchorage Seawolves
#> # ℹ 9,768 more rows
#> # ℹ 31 more variables: team_short_display_name <chr>, team_color <chr>,
#> # team_alternate_color <chr>, team_logo <chr>, athlete_id <chr>, uid <chr>,
#> # guid <chr>, full_name <chr>, display_name <chr>, short_name <chr>,
#> # first_name <chr>, last_name <chr>, jersey <chr>,
#> # position_abbreviation <chr>, position_name <chr>, position_id <chr>,
#> # height <chr>, weight <chr>, age <chr>, date_of_birth <chr>, …
# }
