Learn R Programming

wehoop (version 3.0.0)

wbb_schedule_crosswalk: Get the WBB cross-source schedule crosswalk

Description

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())

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.

Arguments

season

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

See Also

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

Examples

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

Run the code above in your browser using DataLab