Skip to contents

Load cleaned lovb schedule data from the volleydata repository.

Usage

load_lovb_schedule(seasons = NULL)

Arguments

seasons

An integer or vector of integers of seasons to fetch data for. Defaults to all available seasons.

Value

A data frame containing the schedule data for the specified seasons.

Column NameType
seasonint
datestring
roundstring
home_teamstring
away_teamstring
home_team_set_winsint
away_team_set_winsint
match_linkstring
secondary_linkstring
match_idint

Examples

try({load_lovb_schedule(2025)})
#> Rows: 141 Columns: 8
#> ── Column specification ────────────────────────────────────────────────────────
#> Delimiter: ","
#> chr  (5): officials_type, full_name, first_name, last_name, level
#> dbl  (2): match_id, season
#> dttm (1): match_datetime
#> 
#>  Use `spec()` to retrieve the full column specification for this data.
#>  Specify the column types or set `show_col_types = FALSE` to quiet this message.
#> # A tibble: 141 × 8
#>    match_id season match_datetime      officials_type   full_name     first_name
#>       <dbl>  <dbl> <dttm>              <chr>            <chr>         <chr>     
#>  1  2161068   2025 2025-01-09 00:30:00 supervisor       MICHELLE PRA… MICHELLE  
#>  2  2161068   2025 2025-01-09 00:30:00 referee1         PATI ROFF     PATI      
#>  3  2161068   2025 2025-01-09 00:30:00 referee2         SAMARA SEVOR  SAMARA    
#>  4  2161068   2025 2025-01-09 00:30:00 refereeChallenge MARK PRATER   MARK      
#>  5  2161068   2025 2025-01-09 00:30:00 scorer1          APRIL MIFFLIN APRIL     
#>  6  2161068   2025 2025-01-09 00:30:00 scorer2          ALAINA SMITH… ALAINA    
#>  7  2161300   2025 2025-02-01 00:30:00 referee1         Andrew Robb   Andrew    
#>  8  2161300   2025 2025-02-01 00:30:00 referee2         Samara Sevor  Samara    
#>  9  2161300   2025 2025-02-01 00:30:00 refereeChallenge Mark Prater   Mark      
#> 10  2161300   2025 2025-02-01 00:30:00 scorer1          Alaina Smith… Alaina    
#> # ℹ 131 more rows
#> # ℹ 2 more variables: last_name <chr>, level <chr>