Skip to contents

helper that loads multiple seasons from the data repo either into memory or writes it into a db using some forwarded arguments in the dots

Usage

load_wnba_schedule(
  seasons = most_recent_wnba_season(),
  ...,
  dbConnection = NULL,
  tablename = NULL
)

Arguments

seasons

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

...

Additional arguments passed to an underlying function that writes the season data into a database (used by update_wnba_db()).

dbConnection

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

tablename

The name of the schedule data table within the database

Value

Returns a tibble

Examples

# \donttest{
  try(load_wnba_schedule())
#> ──────────────────────────────────────────────────────────────── wehoop 2.0.0 ──
#> # A tibble: 263 × 76
#>         id uid   date  attendance time_valid neutral_site conference_competition
#>      <int> <chr> <chr>      <dbl> <lgl>      <lgl>        <lgl>                 
#>  1  4.02e8 s:40… 2023…      16851 TRUE       FALSE        FALSE                 
#>  2  4.02e8 s:40… 2023…      17143 TRUE       FALSE        FALSE                 
#>  3  4.02e8 s:40… 2023…      10232 TRUE       FALSE        FALSE                 
#>  4  4.02e8 s:40… 2023…      10300 TRUE       FALSE        FALSE                 
#>  5  4.02e8 s:40… 2023…       8196 TRUE       FALSE        FALSE                 
#>  6  4.02e8 s:40… 2023…       6251 TRUE       FALSE        FALSE                 
#>  7  4.02e8 s:40… 2023…       9162 TRUE       FALSE        FALSE                 
#>  8  4.02e8 s:40… 2023…       9286 TRUE       FALSE        FALSE                 
#>  9  4.02e8 s:40… 2023…      10009 TRUE       FALSE        FALSE                 
#> 10  4.02e8 s:40… 2023…       9784 TRUE       FALSE        FALSE                 
#> # ℹ 253 more rows
#> # ℹ 69 more variables: play_by_play_available <lgl>, recent <lgl>,
#> #   start_date <chr>, notes_type <chr>, notes_headline <chr>,
#> #   broadcast_market <chr>, broadcast_name <chr>, type_id <int>,
#> #   type_abbreviation <chr>, venue_id <int>, venue_full_name <chr>,
#> #   venue_address_city <chr>, venue_address_state <chr>, venue_capacity <dbl>,
#> #   venue_indoor <lgl>, status_clock <dbl>, status_display_clock <chr>, …
# }