
Get ESPN Women's College Basketball Athlete Stats
Source:R/espn_wbb_athletes.R
espn_wbb_athlete_stats.RdGet ESPN Women's College Basketball Athlete Stats
Get ESPN Women's College Basketball Athlete Stats
Usage
espn_wbb_athlete_stats(athlete_id, season = most_recent_wbb_season(), ...)Value
A named list of per-category tibbles. Default category names are
General, Offensive, Defensive, Rebounding, Shooting, Misc.
Actual names are driven by the ESPN response; additional categories may
appear. Each tibble has columns depending on the category returned by
ESPN.
See also
Other ESPN WBB Functions:
espn_wbb_athlete_awards(),
espn_wbb_athlete_eventlog(),
espn_wbb_athlete_gamelog(),
espn_wbb_athlete_info(),
espn_wbb_athlete_overview(),
espn_wbb_athlete_splits(),
espn_wbb_athlete_statisticslog(),
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_stats(athlete_id = "4433985", season = 2025)
#> $`Season Averages`
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Athlete Stats from ESPN.com ── wehoop 3.0.0 ──
#> ℹ Data updated: 2026-05-06 04:51:04 UTC
#> # A tibble: 5 × 5
#> team_id team_slug season$year $displayName stats position
#> <chr> <chr> <int> <chr> <list> <chr>
#> 1 66 iowa-state-cyclones 2021 2020-21 <chr [18]> G
#> 2 2294 iowa-hawkeyes 2022 2021-22 <chr [18]> G
#> 3 2294 iowa-hawkeyes 2024 2023-24 <chr [18]> G
#> 4 2294 iowa-hawkeyes 2025 2024-25 <chr [18]> G
#> 5 2294 iowa-hawkeyes 2026 2025-26 <chr [18]> G
#>
#> $`Season Totals`
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Athlete Stats from ESPN.com ── wehoop 3.0.0 ──
#> ℹ Data updated: 2026-05-06 04:51:04 UTC
#> # A tibble: 5 × 5
#> team_id team_slug season$year $displayName stats position
#> <chr> <chr> <int> <chr> <list> <chr>
#> 1 66 iowa-state-cyclones 2021 2020-21 <chr [15]> G
#> 2 2294 iowa-hawkeyes 2022 2021-22 <chr [15]> G
#> 3 2294 iowa-hawkeyes 2024 2023-24 <chr [15]> G
#> 4 2294 iowa-hawkeyes 2025 2024-25 <chr [15]> G
#> 5 2294 iowa-hawkeyes 2026 2025-26 <chr [15]> G
#>
#> $`Season Misc Totals`
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Athlete Stats from ESPN.com ── wehoop 3.0.0 ──
#> ℹ Data updated: 2026-05-06 04:51:04 UTC
#> # A tibble: 5 × 5
#> team_id team_slug season$year $displayName stats position
#> <chr> <chr> <int> <chr> <list> <chr>
#> 1 66 iowa-state-cyclones 2021 2020-21 <chr [9]> G
#> 2 2294 iowa-hawkeyes 2022 2021-22 <chr [9]> G
#> 3 2294 iowa-hawkeyes 2024 2023-24 <chr [9]> G
#> 4 2294 iowa-hawkeyes 2025 2024-25 <chr [9]> G
#> 5 2294 iowa-hawkeyes 2026 2025-26 <chr [9]> G
#>
#> $General
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Athlete Stats from ESPN.com ── wehoop 3.0.0 ──
#> ℹ Data updated: 2026-05-06 04:51:04 UTC
#> # A tibble: 0 × 0
#>
#> $Offensive
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Athlete Stats from ESPN.com ── wehoop 3.0.0 ──
#> ℹ Data updated: 2026-05-06 04:51:04 UTC
#> # A tibble: 0 × 0
#>
#> $Defensive
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Athlete Stats from ESPN.com ── wehoop 3.0.0 ──
#> ℹ Data updated: 2026-05-06 04:51:04 UTC
#> # A tibble: 0 × 0
#>
#> $Rebounding
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Athlete Stats from ESPN.com ── wehoop 3.0.0 ──
#> ℹ Data updated: 2026-05-06 04:51:04 UTC
#> # A tibble: 0 × 0
#>
#> $Shooting
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Athlete Stats from ESPN.com ── wehoop 3.0.0 ──
#> ℹ Data updated: 2026-05-06 04:51:04 UTC
#> # A tibble: 0 × 0
#>
#> $Misc
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Athlete Stats from ESPN.com ── wehoop 3.0.0 ──
#> ℹ Data updated: 2026-05-06 04:51:04 UTC
#> # A tibble: 0 × 0
#>
# }