load_wbb_shots_manifest() returns the per-season manifest
CSV (season, row_count, generated_at_utc, source_endpoint) for
the shots release tag without downloading any season's full data.
Loads shot events parsed from ESPN women's college basketball
play-by-play feeds. One row per shot attempt (made or missed), with court
coordinates and shot metadata. Backed by the wehoop-wbb-data pipeline
that reads raw JSONs from wehoop-wbb-raw and publishes parquet/rds
artifacts to the espn_womens_college_basketball_shots release tag.
Usage
load_wbb_shots_manifest()
load_wbb_shots(
seasons = most_recent_wbb_season(),
...,
dbConnection = NULL,
tablename = NULL
)Arguments
- seasons
A vector of 4-digit years associated with given women's college basketball seasons. (Min: 2002)
- ...
Additional arguments passed to an underlying function that writes the season data into a database.
- dbConnection
A
DBIConnectionobject, as returned byDBI::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_name | types |
| game_id | character |
| season | integer |
| period_number | integer |
| clock_display_value | character |
| team_id | character |
| athlete_id_1 | character |
| athlete_id_2 | character |
| type_id | character |
| type_text | character |
| scoring_play | logical |
| score_value | integer |
| coordinate_x | numeric |
| coordinate_y | numeric |
| coordinate_x_raw | numeric |
| coordinate_y_raw | numeric |
Examples
# \donttest{
try(load_wbb_shots(seasons = most_recent_wbb_season()))
#> Warning: cannot open URL 'https://github.com/sportsdataverse/sportsdataverse-data/releases/download/espn_womens_college_basketball_shots/shots_2026.rds': HTTP status was '404 Not Found'
#> Warning: Failed to readRDS from <https://github.com/sportsdataverse/sportsdataverse-data/releases/download/espn_womens_college_basketball_shots/shots_2026.rds>
#> ──────────────────────────────────────────────────────────────── wehoop 3.0.0 ──
#> # A tibble: 0 × 0
# }
