Skip to contents

Build a wide, one-row-per-game crosswalk linking ESPN and Bart Torvik (barttorvik.com/ncaaw) game identifiers for a WBB season. Fox Sports and Yahoo game IDs are NA placeholders. Dates are reduced to Eastern-Time game dates before joining; Torvik team1/team2 are unordered (the join uses a sorted team-pair key, so home/away from the Torvik side is not preserved). Games where either Torvik team name cannot be resolved to an ESPN id via wbb_team_crosswalk() are kept as bart_only rows.

Usage

wbb_schedule_crosswalk(season = most_recent_wbb_season())

Arguments

season

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

Value

A wehoop_data tibble, one row per game:

col_nametypesdescription
seasonintegerSeason year.
game_dateDateET game date.
home_espn_team_idintegerESPN home team id (NA for bart-only rows).
away_espn_team_idintegerESPN away team id (NA for bart-only rows).
espn_game_idcharacterESPN game id (NA for bart-only rows).
bart_muidcharacterTorvik muid (NA for espn-only rows).
bart_team1characterTorvik team1 name (NA for espn-only rows).
bart_team2characterTorvik team2 name (NA for espn-only rows).
bart_winnercharacterTorvik winner name (NA for espn-only rows).
fox_game_idcharacterFox game id (NA placeholder).
yahoo_game_idcharacterYahoo game id (NA placeholder).
match_methodcharacter"both"/"espn_only"/"bart_only".
match_confidencenumeric1 for matched, NA for unmatched.

Examples

# \donttest{
  try(wbb_schedule_crosswalk(season = 2025))
#> ── WBB schedule crosswalk (ESPN / Torvik) ────────────────────── wehoop 3.0.0 ──
#>  Data updated: 2026-06-12 14:58:13 UTC
#> # A tibble: 24,364 × 13
#>    season game_date  home_espn_team_id away_espn_team_id espn_game_id bart_muid 
#>     <int> <date>                 <int>             <int> <chr>        <chr>     
#>  1   2025 2024-11-04              2579               130 401713576    MichiganS…
#>  2   2025 2024-11-04                30               145 401720643    Mississip…
#>  3   2025 2024-11-04                26                97 401720402    Louisvill…
#>  4   2025 2024-11-04                87              2385 401711562    NA        
#>  5   2025 2024-11-04                99              2198 401713679    Eastern K…
#>  6   2025 2024-11-04                66              2130 401703035    Chicago S…
#>  7   2025 2024-11-04               201              2582 401725988    SouthernO…
#>  8   2025 2024-11-04               150              2515 401702871    RadfordDu…
#>  9   2025 2024-11-04              2306              2739 401714674    Green Bay…
#> 10   2025 2024-11-04               153              2127 401711554    Charlesto…
#> # ℹ 24,354 more rows
#> # ℹ 7 more variables: bart_team1 <chr>, bart_team2 <chr>, bart_winner <chr>,
#> #   fox_game_id <chr>, yahoo_game_id <chr>, match_method <chr>,
#> #   match_confidence <dbl>
# }