Skip to contents

Loads season-level WNBA player statistics scraped from the WNBA Stats API. Backed by the wehoop-wnba-stats-data pipeline that reads raw JSONs from wehoop-wnba-stats-raw and publishes parquet/rds artifacts to the wnba_stats_player_season_stats release tag.

load_wnba_stats_player_stats_manifest() returns the per-season manifest CSV (season, row_count, generated_at_utc, source_endpoint) for the WNBA Stats player season stats release tag without downloading any season's full data.

Usage

load_wnba_stats_player_stats(
  seasons = most_recent_wnba_stats_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

load_wnba_stats_player_stats_manifest()

Arguments

seasons

A vector of 4-digit years associated with given WNBA seasons. (Min: 1997)

...

Additional arguments passed to an underlying function that writes the season data into a database.

dbConnection

A DBIConnection object, as returned by DBI::dbConnect()

tablename

The name of the player season stats table within the database

Value

Returns a wehoop_data tibble of player season stats.

Examples

# \donttest{
  try(load_wnba_stats_player_stats(seasons = most_recent_wnba_stats_season()))
#> ──────────────────────────────────────────────────────────────── wehoop 3.0.0 ──
#> # A tibble: 1,206 × 209
#>    player_id player_name    nickname team_id team_abbreviation age   gp    w    
#>    <chr>     <chr>          <chr>    <chr>   <chr>             <chr> <chr> <chr>
#>  1 1628932   A'ja Wilson    A'ja     161166… LVA               29    12    9    
#>  2 1642290   Aaliyah Edwar… Aaliyah  161166… CON               23    8     1    
#>  3 1642801   Aaliyah Nye    Aaliyah  161166… ATL               23    10    6    
#>  4 1642786   Aicha Couliba… Aicha    161166… CHI               24    7     2    
#>  5 1629501   Alanna Smith   Alanna   161166… DAL               29    11    7    
#>  6 1643525   Alex Fowler    Alex     161166… NYL               24    2     1    
#>  7 1642775   Alex Wilson    Alex     161166… WAS               32    4     2    
#>  8 1643644   Alicia Florez  Alicia   161166… WAS               22    5     2    
#>  9 1641648   Aliyah Boston  Aliyah   161166… IND               24    11    6    
#> 10 1628277   Allisha Gray   Allisha  161166… ATL               31    12    8    
#> # ℹ 1,196 more rows
#> # ℹ 201 more variables: l <chr>, w_pct <chr>, min <chr>, fgm <chr>, fga <chr>,
#> #   fg_pct <chr>, fg3m <chr>, fg3a <chr>, fg3_pct <chr>, ftm <chr>, fta <chr>,
#> #   ft_pct <chr>, oreb <chr>, dreb <chr>, reb <chr>, ast <chr>, tov <chr>,
#> #   stl <chr>, blk <chr>, blka <chr>, pf <chr>, pfd <chr>, pts <chr>,
#> #   plus_minus <chr>, nba_fantasy_pts <chr>, dd2 <chr>, td3 <chr>,
#> #   wnba_fantasy_pts <chr>, gp_rank <chr>, w_rank <chr>, l_rank <chr>, …
# }