powered by
Get WNBA league-wide player season statistics from Basketball-Reference.
One row per player for a season. No account or API key is required. Basketball-Reference rate-limits aggressive scraping (~20 requests/minute) -- space repeated calls with Sys.sleep().
Sys.sleep()
bref_wnba_player_stats(season = most_recent_wnba_season(), table = "per_game")
A wehoop_data tibble with one row per player, carrying season and table columns.
wehoop_data
season
table
Season, in 4-digit year format (e.g. 2024). Defaults to most_recent_wnba_season().
2024
most_recent_wnba_season()
Which stats table -- one of "per_game" (default), "totals" or "advanced".
"per_game"
"totals"
"advanced"
Other WNBA Basketball-Reference Functions: bref_wnba_standings(), bref_wnba_team_stats()
bref_wnba_standings()
bref_wnba_team_stats()
# \donttest{ try(bref_wnba_player_stats(season = 2024, table = "per_game")) # }
Run the code above in your browser using DataLab