
Get NBA Stats API Player Career By College
Source:R/nba_stats_player.R
nba_playercareerbycollege.RdDeprecated in hoopR 3.0.0. This endpoint is unstable/empty; use nba_playercareerbycollegerollup() instead.
Usage
nba_playercareerbycollege(
college = "Florida State",
league_id = "00",
per_mode = "Totals",
season = year_to_season(most_recent_nba_season() - 1),
season_type = "Regular Season",
...
)Arguments
- college
College Name
- league_id
League - default: '00'. Other options include '10': WNBA, '20': G-League
- per_mode
Per Mode - PerGame, Totals
- season
Season - format 2020-21
- season_type
Season Type - Regular Season, Playoffs, All-Star
- ...
Additional arguments passed to an underlying function like httr.
Value
Return a named list of data frames: PlayerCareerByCollege
PlayerCareerByCollege
| col_name | types | description |
| PLAYER_ID | character | Unique player identifier. |
| PLAYER_NAME | character | Player name. |
| COLLEGE | character | College or school attended. |
| GP | character | Games played. |
| MIN | character | Minutes played. |
| FGM | character | Field goals made. |
| FGA | character | Field goal attempts. |
| FG_PCT | character | Field goal percentage (0-1). |
| FG3M | character | Three-point field goals made. |
| FG3A | character | Three-point field goal attempts. |
| FG3_PCT | character | Three-point field goal percentage (0-1). |
| FTM | character | Free throws made. |
| FTA | character | Free throw attempts. |
| FT_PCT | character | Free throw percentage (0-1). |
| OREB | character | Offensive rebounds. |
| DREB | character | Defensive rebounds. |
| REB | character | Total rebounds. |
| AST | character | Assists. |
| TOV | character | Turnovers. |
| STL | character | Steals. |
| BLK | character | Blocks. |
| PF | character | Personal fouls. |
| PTS | character | Points scored. |
Details
nba_playercareerbycollege(college = 'Florida State', per_mode = 'PerGame')See also
Other NBA Player Functions:
nba_infographicfanduelplayer(),
nba_leaguedashplayerbiostats(),
nba_leaguedashplayerclutch(),
nba_leaguedashplayershotlocations(),
nba_leaguedashplayerstats(),
nba_leagueplayerondetails(),
nba_leagueseasonmatchups(),
nba_matchupsrollup(),
nba_playerawards(),
nba_playercareerbycollegerollup(),
nba_playercareerstats(),
nba_playercompare(),
nba_playerdashboardbyclutch(),
nba_playerdashptpass(),
nba_playerdashptreb(),
nba_playerdashptshotdefend(),
nba_playerdashptshots(),
nba_playerestimatedmetrics(),
nba_playerfantasyprofile(),
nba_playerfantasyprofilebargraph(),
nba_playergamelog(),
nba_playergamelogs(),
nba_playergamestreakfinder(),
nba_playerheadshot(),
nba_playerindex(),
nba_playernextngames(),
nba_playerprofilev2(),
nba_playervsplayer()