Skip to contents

Returns career stats for an MBB 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_mbb_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 MBB Athlete Career Stats (Long Format)

See also

Other ESPN MBB Functions: espn_mbb_athlete_awards(), espn_mbb_athlete_eventlog(), espn_mbb_athlete_eventlog_v2(), espn_mbb_athlete_gamelog(), espn_mbb_athlete_info(), espn_mbb_athlete_overview(), espn_mbb_athlete_seasons(), espn_mbb_athlete_splits(), espn_mbb_athlete_statisticslog(), espn_mbb_athlete_stats(), espn_mbb_athletes_index(), espn_mbb_award(), espn_mbb_betting(), espn_mbb_calendar(), espn_mbb_coach(), espn_mbb_coach_season(), espn_mbb_coaches(), espn_mbb_conferences(), espn_mbb_event_broadcasts(), espn_mbb_event_odds(), espn_mbb_event_officials(), espn_mbb_event_powerindex(), espn_mbb_event_predictor(), espn_mbb_event_probabilities(), espn_mbb_event_propbets(), espn_mbb_event_situation(), espn_mbb_franchise(), espn_mbb_franchises(), espn_mbb_futures(), espn_mbb_game_all(), espn_mbb_game_rosters(), espn_mbb_injuries(), espn_mbb_leaders(), espn_mbb_news(), espn_mbb_pbp(), espn_mbb_player_box(), espn_mbb_player_stats(), espn_mbb_powerindex(), espn_mbb_rankings(), espn_mbb_scoreboard(), espn_mbb_season_awards(), espn_mbb_season_group(), espn_mbb_season_group_children(), espn_mbb_season_group_teams(), espn_mbb_season_groups(), espn_mbb_season_info(), espn_mbb_season_leaders(), espn_mbb_season_ranking(), espn_mbb_season_rankings(), espn_mbb_season_type(), espn_mbb_season_types(), espn_mbb_season_week(), espn_mbb_season_weeks(), espn_mbb_seasons(), espn_mbb_standings(), espn_mbb_team(), espn_mbb_team_box(), espn_mbb_team_current_roster(), espn_mbb_team_injuries(), espn_mbb_team_leaders(), espn_mbb_team_news(), espn_mbb_team_odds_records(), espn_mbb_team_record(), espn_mbb_team_roster(), espn_mbb_team_schedule(), espn_mbb_team_season_profile(), espn_mbb_team_season_roster(), espn_mbb_team_stats(), espn_mbb_teams(), espn_mbb_tournament(), espn_mbb_tournament_seasons(), espn_mbb_tournaments(), espn_mbb_venues(), espn_mbb_week_ranking(), espn_mbb_week_rankings(), espn_mbb_wp()

Author

Saiem Gilani

Examples

# \donttest{
  # LeBron James — regular + postseason combined
  espn_mbb_athlete_career_stats(athlete_id = 1966)
#> ── ESPN MENS-COLLEGE-BASKETBALL Athlete Career Stats ──────────── hoopR 3.1.0 ──
#>  Data updated: 2026-05-19 01:32:53 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 mens-co… 1966       0            0        Season     season     defensive    
#>  2 mens-co… 1966       0            0        Season     season     defensive    
#>  3 mens-co… 1966       0            0        Season     season     defensive    
#>  4 mens-co… 1966       0            0        Season     season     defensive    
#>  5 mens-co… 1966       0            0        Season     season     defensive    
#>  6 mens-co… 1966       0            0        Season     season     defensive    
#>  7 mens-co… 1966       0            0        Season     season     defensive    
#>  8 mens-co… 1966       0            0        Season     season     defensive    
#>  9 mens-co… 1966       0            0        Season     season     general      
#> 10 mens-co… 1966       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_mbb_athlete_career_stats(athlete_id = 1966, stat_type = 2L)
#> ── ESPN MENS-COLLEGE-BASKETBALL Athlete Career Stats ──────────── hoopR 3.1.0 ──
#>  Data updated: 2026-05-19 01:32:53 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>
# }