Learn R Programming

wehoop (version 3.0.0)

wbb_team_crosswalk: Get the WBB cross-source team crosswalk

Description

Build a wide, one-row-per-team-per-season crosswalk linking ESPN, Fox Sports (Bifrost), and Bart Torvik (barttorvik.com/ncaaw) women's college basketball team identities, keyed on espn_team_id. Yahoo columns are NA placeholders. ESPN is deduped by team_id (first occurrence kept). Fox is joined on the full normalized mascot name (with a curated alias bridge for cases where Fox and ESPN differ); Torvik is joined on the normalized school/location name after a curated alias pass for common divergences (e.g. "UConn" / "Connecticut", "Ole Miss" / "Mississippi").

Usage

wbb_team_crosswalk(season = most_recent_wbb_season(), fox = NULL)

Value

A wehoop_data tibble, one row per ESPN team:

col_nametypesdescription
seasonintegerSeason year.
espn_team_idintegerESPN team id (canonical key).
espn_abbreviationcharacterESPN abbreviation.
espn_display_namecharacterESPN display name (school + mascot).
espn_short_namecharacterESPN short name.
espn_locationcharacterESPN school/location only.
espn_mascotcharacterESPN mascot/nickname.
espn_conferencecharacterESPN conference name.
fox_team_idcharacterFox Bifrost team id (NA if unmatched).
fox_team_namecharacterFox team name (NA if unmatched).
fox_sectioncharacterFox conference/section label (NA if unmatched).
bart_teamcharacterTorvik team name (NA if unmatched).
bart_confcharacterTorvik conference abbreviation (NA if unmatched).
yahoo_team_idcharacterYahoo team id (NA placeholder).
yahoo_team_namecharacterYahoo team name (NA placeholder).
fox_match_confidencenumeric1 for matched, NA for unmatched.
bart_match_confidencenumeric1 for matched, NA for unmatched.
match_methodcharacter"fox+bart"/"fox_only"/"bart_only"/"espn_only".

Arguments

season

Season year (4-digit, e.g. 2025). Defaults to most_recent_wbb_season().

fox

An already-fetched fox_wbb_teams_all() frame, or NULL (default) to fetch live. Accepts a pre-fetched frame to avoid the ~60-second Fox enumeration when calling repeatedly.

See Also

Other WBB Crosswalk Functions: load_wnba_team_crosswalk(), wbb_player_crosswalk(), wbb_schedule_crosswalk()

Examples

Run this code
# \donttest{
  try(wbb_team_crosswalk(season = 2025))
# }

Run the code above in your browser using DataLab