Skip to contents

Loads shot events scraped from the WNBA Stats API (shotchartdetail-style outputs). One row per shot attempt with court coordinates, shot type, distance, and made/missed flag. 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_shots release tag.

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

Usage

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

load_wnba_stats_shots_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 shots data table within the database

Value

Returns a wehoop_data tibble with one row per shot attempt.

col_nametypes
seasoninteger
game_idcharacter
game_event_idcharacter
player_idcharacter
player_namecharacter
team_idcharacter
team_namecharacter
periodinteger
minutes_remaininginteger
seconds_remaininginteger
event_typecharacter
action_typecharacter
shot_typecharacter
shot_zone_basiccharacter
shot_zone_areacharacter
shot_zone_rangecharacter
shot_distancenumeric
loc_xnumeric
loc_ynumeric
coordinate_xnumeric
coordinate_ynumeric
shot_attempted_flaginteger
shot_made_flaginteger

Examples

# \donttest{
  try(load_wnba_stats_shots(seasons = most_recent_wnba_stats_season()))
#> Warning: cannot open URL 'https://github.com/sportsdataverse/sportsdataverse-data/releases/download/wnba_stats_shots/shots_2026.rds': HTTP status was '404 Not Found'
#> Warning: Failed to readRDS from <https://github.com/sportsdataverse/sportsdataverse-data/releases/download/wnba_stats_shots/shots_2026.rds>
#> ──────────────────────────────────────────────────────────────── wehoop 3.0.0 ──
#> # A tibble: 0 × 0
# }