Skip to contents

Returns career stats for a WBB athlete in long format. Default stat_type = 0L fetches the standard "All Splits" / regular-season view. Pass a vector like c(0L, 1L, 2L) to attempt multiple types and bind them via a stat_type_id column; variants that 404 for that athlete are silently skipped. Stat types: 0 = regular season (default endpoint), 1 = postseason, 2 = career aggregate. Coverage of types 1 and 2 is sparse — many athletes only have type 0 populated.

Usage

espn_wbb_athlete_career_stats(athlete_id, stat_type = 0L, ...)

Arguments

athlete_id

ESPN athlete identifier.

stat_type

Integer or integer vector of stat-type codes. Default 0L fetches the standard "All Splits" / regular-season view. Pass a vector like c(0L, 1L, 2L) to bind multiple types via a stat_type_id column; non-existent variants are silently skipped.

...

Additional arguments; currently unused.

Value

A long tibble (one row per stat_type × split × category × stat).

col_nametypesdescription
leaguecharacterLeague slug.
athlete_idcharacterESPN athlete id.
stat_type_idcharacterStat-type code (0 = reg, 1 = post, 2 = career).
split_idcharacterSplit id.
split_namecharacterSplit name (typically "All Splits").
split_typecharacterSplit type code.
category_namecharacterCategory key (e.g. "defensive").
category_displaycharacterCategory display name.
category_shortcharacterCategory short display.
category_abbrevcharacterCategory abbreviation.
stat_namecharacterStat key.
stat_abbrevcharacterStat abbreviation.
stat_displaycharacterStat display name.
stat_shortcharacterStat short display.
descriptioncharacterStat description.
valuenumericStat value.
display_valuecharacterDisplay-formatted value.

Details

Get ESPN WBB Athlete Career Stats (Long Format)

See also

Other ESPN WBB Functions: espn_wbb_athlete_awards(), espn_wbb_athlete_eventlog(), espn_wbb_athlete_eventlog_v2(), espn_wbb_athlete_gamelog(), espn_wbb_athlete_info(), espn_wbb_athlete_overview(), espn_wbb_athlete_seasons(), espn_wbb_athlete_splits(), espn_wbb_athlete_statisticslog(), espn_wbb_athlete_stats(), 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_event_broadcasts(), espn_wbb_event_competitor_leaders(), espn_wbb_event_competitor_linescores(), espn_wbb_event_competitor_records(), espn_wbb_event_competitor_roster(), espn_wbb_event_competitor_roster_entry(), espn_wbb_event_competitor_score(), espn_wbb_event_competitor_statistics(), espn_wbb_event_odds(), espn_wbb_event_official_detail(), espn_wbb_event_officials(), espn_wbb_event_play(), espn_wbb_event_play_personnel(), espn_wbb_event_player_box(), espn_wbb_event_powerindex(), espn_wbb_event_predictor(), espn_wbb_event_probabilities(), espn_wbb_event_propbets(), espn_wbb_event_situation(), espn_wbb_franchise(), espn_wbb_franchises(), 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_position(), espn_wbb_positions(), espn_wbb_powerindex(), espn_wbb_rankings(), espn_wbb_scoreboard(), espn_wbb_season_awards(), espn_wbb_season_group(), espn_wbb_season_group_children(), espn_wbb_season_group_teams(), 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_box(), espn_wbb_team_injuries(), espn_wbb_team_leaders(), espn_wbb_team_news(), espn_wbb_team_record_detail(), espn_wbb_team_roster(), espn_wbb_team_schedule(), espn_wbb_team_season_profile(), 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()

Author

Saiem Gilani

Examples

# \donttest{
  # LeBron James — regular + postseason combined
  espn_wbb_athlete_career_stats(athlete_id = 4433404)
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Athlete Career Stats ───────── wehoop 3.0.0 ──
#>  Data updated: 2026-05-19 19:24:56 UTC
#> # A tibble: 87 × 17
#>    league   athlete_id stat_type_id split_id split_name split_type category_name
#>    <chr>    <chr>      <chr>        <chr>    <chr>      <chr>      <chr>        
#>  1 womens-… 4433404    0            0        Season     season     defensive    
#>  2 womens-… 4433404    0            0        Season     season     defensive    
#>  3 womens-… 4433404    0            0        Season     season     defensive    
#>  4 womens-… 4433404    0            0        Season     season     defensive    
#>  5 womens-… 4433404    0            0        Season     season     defensive    
#>  6 womens-… 4433404    0            0        Season     season     defensive    
#>  7 womens-… 4433404    0            0        Season     season     defensive    
#>  8 womens-… 4433404    0            0        Season     season     defensive    
#>  9 womens-… 4433404    0            0        Season     season     general      
#> 10 womens-… 4433404    0            0        Season     season     general      
#> # ℹ 77 more rows
#> # ℹ 10 more variables: category_display <chr>, category_short <chr>,
#> #   category_abbrev <chr>, stat_name <chr>, stat_abbrev <chr>,
#> #   stat_display <chr>, stat_short <chr>, description <chr>, value <dbl>,
#> #   display_value <chr>
  # Just career aggregate
  espn_wbb_athlete_career_stats(athlete_id = 4433404, stat_type = 2L)
#> ── ESPN WOMENS-COLLEGE-BASKETBALL Athlete Career Stats ───────── wehoop 3.0.0 ──
#>  Data updated: 2026-05-19 19:24:56 UTC
#> # A tibble: 0 × 17
#> # ℹ 17 variables: league <chr>, athlete_id <chr>, stat_type_id <chr>,
#> #   split_id <chr>, split_name <chr>, split_type <chr>, category_name <chr>,
#> #   category_display <chr>, category_short <chr>, category_abbrev <chr>,
#> #   stat_name <chr>, stat_abbrev <chr>, stat_display <chr>, stat_short <chr>,
#> #   description <chr>, value <dbl>, display_value <chr>
# }