
Load cleaned mlv player boxscore data from the volleydata repository.
Source:R/mlv.R
load_mlv_player_boxscore.Rd
Load cleaned mlv player boxscore data from the volleydata repository.
Value
A data frame containing the player boxscore data for the specified seasons.
Column Name | Type |
match_id | dbl |
season | dbl |
match_datetime | chr |
set | dbl |
set_start_time | chr |
set_end_time | chr |
set_duration | dbl |
set_home_score | dbl |
set_away_score | dbl |
event_type | chr |
event_time | chr |
libero_enters | lgl |
team_involved | chr |
libero_jersey_number | dbl |
libero_subsitute_jersey_number | dbl |
rally_start_time | chr |
rally_end_time | chr |
point_team | chr |
call_approved | lgl |
player_in_jersey_number | dbl |
player_out_jersey_number | dbl |
challenge_reason | chr |
challenge_method | chr |
challenge_response | chr |
challenge_result | chr |
home_score_after_challenge | dbl |
away_score_after_challenge | dbl |
Examples
try({load_mlv_player_boxscore(2024)})
#> Rows: 6473 Columns: 28
#> ── Column specification ────────────────────────────────────────────────────────
#> Delimiter: ","
#> chr (8): player_name, first_name, last_name, roster_status, team_name, tea...
#> dbl (10): match_id, season, player_id, jersey_number, primary_position, set...
#> lgl (9): is_foreign, is_confederation, is_captain, is_libero, set_1_is_sta...
#> 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: 2,418 × 28
#> match_id season match_datetime player_id player_name first_name
#> <dbl> <dbl> <dttm> <dbl> <chr> <chr>
#> 1 2125267 2024 2024-01-25 01:00:00 2130330 Natalia Valentin-An… Natalia
#> 2 2125267 2024 2024-01-25 01:00:00 2130314 Sydney Hilley Sydney
#> 3 2125267 2024 2024-01-25 01:00:00 2130327 Kendall White Kendall
#> 4 2125267 2024 2024-01-25 01:00:00 2130317 Brooke Nuneviller Brooke
#> 5 2125267 2024 2024-01-25 01:00:00 2130312 Tori Dixon Tori
#> 6 2125267 2024 2024-01-25 01:00:00 2130329 Gina Prososki Gina
#> 7 2125267 2024 2024-01-25 01:00:00 2130320 Jess Schaben-Lansman Jess
#> 8 2125267 2024 2024-01-25 01:00:00 2130332 Paige Briggs Paige
#> 9 2125267 2024 2024-01-25 01:00:00 2130319 Nia Reed Nia
#> 10 2125267 2024 2024-01-25 01:00:00 2130316 Allison Mayfield Allison
#> # ℹ 2,408 more rows
#> # ℹ 22 more variables: last_name <chr>, jersey_number <dbl>,
#> # primary_position <dbl>, roster_status <chr>, is_foreign <lgl>,
#> # is_confederation <lgl>, is_captain <lgl>, is_libero <lgl>,
#> # set_1_is_starter <lgl>, set_1_starting_position <dbl>,
#> # set_2_is_starter <lgl>, set_2_starting_position <dbl>,
#> # set_3_is_starter <lgl>, set_3_starting_position <dbl>, …