
Get ESPN Women's College Basketball Athlete Gamelog
Source:R/espn_wbb_athletes.R
espn_wbb_athlete_gamelog.RdGet ESPN Women's College Basketball Athlete Gamelog
Get ESPN Women's College Basketball Athlete Gamelog
Usage
espn_wbb_athlete_gamelog(athlete_id, season = most_recent_wbb_season(), ...)Value
A single tibble with one row per game. Column names reflect the stat labels returned by ESPN and will vary by season and player.
See also
Other ESPN WBB Functions:
espn_wbb_athlete_awards(),
espn_wbb_athlete_eventlog(),
espn_wbb_athlete_info(),
espn_wbb_athlete_overview(),
espn_wbb_athlete_splits(),
espn_wbb_athlete_statisticslog(),
espn_wbb_athlete_stats(),
espn_wbb_athletes_index(),
espn_wbb_calendar(),
espn_wbb_coaches(),
espn_wbb_conferences(),
espn_wbb_event_broadcasts(),
espn_wbb_event_odds(),
espn_wbb_event_officials(),
espn_wbb_event_probabilities(),
espn_wbb_game_all(),
espn_wbb_game_rosters(),
espn_wbb_injuries(),
espn_wbb_leaders(),
espn_wbb_news(),
espn_wbb_pbp(),
espn_wbb_player_box(),
espn_wbb_player_stats(),
espn_wbb_rankings(),
espn_wbb_scoreboard(),
espn_wbb_season_info(),
espn_wbb_seasons(),
espn_wbb_standings(),
espn_wbb_team(),
espn_wbb_team_box(),
espn_wbb_team_injuries(),
espn_wbb_team_leaders(),
espn_wbb_team_news(),
espn_wbb_team_roster(),
espn_wbb_team_schedule(),
espn_wbb_team_stats(),
espn_wbb_teams(),
espn_wbb_venues()
Examples
# \donttest{
espn_wbb_athlete_gamelog(athlete_id = "4433985", season = 2025)
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Athlete Gamelog from ESPN.com ────────────────
#> ℹ Data updated: 2026-05-06 04:51:02 UTC
#> # A tibble: 34 × 26
#> id week at_vs game_date score home_team_id away_team_id home_team_score
#> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
#> 1 401746… 2 @ 2025-03-… 96-62 201 2294 96
#> 2 401746… 1 vs 2025-03-… 92-57 2294 93 92
#> 3 401743… 18 vs 2025-03-… 60-59 194 2294 60
#> 4 401743… 18 vs 2025-03-… 74-61 127 2294 61
#> 5 401743… 18 vs 2025-03-… 81-54 2294 275 81
#> 6 401721… 17 vs 2025-03-… 81-66 2294 275 81
#> 7 401721… 17 @ 2025-02-… 79-66 130 2294 66
#> 8 401721… 16 vs 2025-02-… 67-65 2294 26 65
#> 9 401721… 16 @ 2025-02-… 86-7… 194 2294 86
#> 10 401721… 15 vs 2025-02-… 55-43 2294 164 55
#> # ℹ 24 more rows
#> # ℹ 18 more variables: away_team_score <chr>, game_result <chr>,
#> # league_name <chr>, league_abbreviation <chr>, league_short_name <chr>,
#> # event_note <chr>, team_id <chr>, team_uid <chr>, team_abbreviation <chr>,
#> # team_logo <chr>, team_is_all_star <chr>, opponent_id <chr>,
#> # opponent_uid <chr>, opponent_display_name <chr>,
#> # opponent_abbreviation <chr>, opponent_logo <chr>, opponent_rank <chr>, …
# }