
Get ESPN women's college basketball schedule for a specific year
Source:R/espn_wbb_data.R
espn_wbb_scoreboard.RdGet ESPN women's college basketball schedule for a specific year
See also
Other ESPN WBB Functions:
espn_wbb_athletes_index(),
espn_wbb_award(),
espn_wbb_calendar(),
espn_wbb_coach(),
espn_wbb_coach_record(),
espn_wbb_coach_season(),
espn_wbb_coaches(),
espn_wbb_conferences(),
espn_wbb_franchise(),
espn_wbb_franchises(),
espn_wbb_game_all(),
espn_wbb_game_odds(),
espn_wbb_game_official_detail(),
espn_wbb_game_play(),
espn_wbb_game_play_personnel(),
espn_wbb_game_player_box(),
espn_wbb_game_probabilities(),
espn_wbb_game_propbets(),
espn_wbb_game_team_linescores(),
espn_wbb_game_team_roster_entry(),
espn_wbb_injuries(),
espn_wbb_leaders(),
espn_wbb_news(),
espn_wbb_player_awards(),
espn_wbb_player_career_stats(),
espn_wbb_player_eventlog_v2(),
espn_wbb_player_info(),
espn_wbb_player_overview(),
espn_wbb_player_seasons(),
espn_wbb_player_stats(),
espn_wbb_position(),
espn_wbb_positions(),
espn_wbb_powerindex(),
espn_wbb_rankings(),
espn_wbb_season_awards(),
espn_wbb_season_group(),
espn_wbb_season_groups(),
espn_wbb_season_info(),
espn_wbb_season_leaders(),
espn_wbb_season_ranking(),
espn_wbb_season_rankings(),
espn_wbb_season_type(),
espn_wbb_season_types(),
espn_wbb_season_week(),
espn_wbb_season_weeks(),
espn_wbb_seasons(),
espn_wbb_standings(),
espn_wbb_team(),
espn_wbb_team_injuries(),
espn_wbb_team_news(),
espn_wbb_team_record_detail(),
espn_wbb_team_schedule(),
espn_wbb_team_season_roster(),
espn_wbb_team_season_statistics(),
espn_wbb_team_stats(),
espn_wbb_teams(),
espn_wbb_tournament(),
espn_wbb_tournament_season(),
espn_wbb_tournament_seasons(),
espn_wbb_tournaments(),
espn_wbb_venues(),
espn_wbb_week_ranking(),
espn_wbb_week_rankings()
Examples
# Get schedule from date 2022-11-15
# \donttest{
try(espn_wbb_scoreboard (season = "20230225"))
#> ── ESPN WBB Scoreboard Information from ESPN.com ─────────────── wehoop 3.0.0 ──
#> ℹ Data updated: 2026-09-10 00:47:59 UTC
#> # A tibble: 532 × 36
#> matchup matchup_short season season_type season_slug game_id game_uid
#> <chr> <chr> <int> <int> <chr> <int> <chr>
#> 1 Stanford Cardi… STAN @ UTAH 2023 2 regular-se… 4.01e8 s:40~l:…
#> 2 UConn Huskies … CONN @ DEP 2023 2 regular-se… 4.01e8 s:40~l:…
#> 3 Texas Longhorn… TEX @ OU 2023 2 regular-se… 4.01e8 s:40~l:…
#> 4 Arizona Wildca… ARIZ @ ORST 2023 2 regular-se… 4.01e8 s:40~l:…
#> 5 Washington Hus… WASH @ UCLA 2023 2 regular-se… 4.01e8 s:40~l:…
#> 6 Gonzaga Bulldo… GONZ @ BYU 2023 2 regular-se… 4.01e8 s:40~l:…
#> 7 TCU Horned Fro… TCU @ ISU 2023 2 regular-se… 4.01e8 s:40~l:…
#> 8 California Gol… CAL @ COLO 2023 2 regular-se… 4.01e8 s:40~l:…
#> 9 San Diego Stat… SDSU @ UNLV 2023 2 regular-se… 4.01e8 s:40~l:…
#> 10 Middle Tenness… MTSU @ LT 2023 2 regular-se… 4.01e8 s:40~l:…
#> # ℹ 522 more rows
#> # ℹ 29 more variables: game_date <date>, attendance <int>,
#> # play_by_play_available <lgl>, status_name <chr>, broadcast_market <chr>,
#> # broadcast_name <chr>, start_date <chr>, broadcast <chr>,
#> # game_date_time <dttm>, home_team_name <chr>, home_team_logo <chr>,
#> # home_team_abb <chr>, home_team_id <int>, home_team_location <chr>,
#> # home_team_full_name <chr>, home_team_color <chr>, home_score <int>, …
# }