
Load cleaned lovb schedule data from the volleydata repository.
Source:R/lovb.R
load_lovb_schedule.Rd
Load cleaned lovb schedule data from the volleydata repository.
Value
A data frame containing the schedule data for the specified seasons.
Column Name | Type |
season | int |
date | string |
round | string |
home_team | string |
away_team | string |
home_team_set_wins | int |
away_team_set_wins | int |
match_link | string |
secondary_link | string |
match_id | int |
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>