Skip to contents

A function to load the Canadian Elite Basketball League (CEBL) officials.

Usage

load_cebl_officials(seasons = NULL)

Arguments

seasons

A vector of seasons (years) to filter the data.

Value

A data frame containing the CEBL officials for the specified seasons.

Column NameType
game_iddbl
seasondbl
officials_typechr
officials_namechr
first_namechr
last_namechr
scoreboard_namechr
first_name_initialchr
last_name_initialchr
international_first_namechr
international_first_name_initialchr
international_last_namechr
international_last_name_initialchr
scoreboard_namechr

Examples

load_cebl_officials(2020:2021)
#> Rows: 1675 Columns: 13
#> ── Column specification ────────────────────────────────────────────────────────
#> Delimiter: ","
#> chr (11): officials_type, officials_name, first_name, last_name, scoreboard_...
#> dbl  (2): game_id, season
#> 
#>  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: 248 × 13
#>    game_id season officials_type officials_name first_name last_name
#>      <dbl>  <dbl> <chr>          <chr>          <chr>      <chr>    
#>  1 1716674   2020 referee1       Tony Turnbull  Tony       Turnbull 
#>  2 1716674   2020 referee2       Chris Delaney  Chris      Delaney  
#>  3 1716674   2020 referee3       Kevin Moore    Kevin      Moore    
#>  4 1716676   2020 referee1       Frank Rizzuti  Frank      Rizzuti  
#>  5 1716676   2020 referee2       Vern Bovell    Vern       Bovell   
#>  6 1716676   2020 referee3       Chris Buccella Chris      Buccella 
#>  7 1716679   2020 referee1       Tony Turnbull  Tony       Turnbull 
#>  8 1716679   2020 referee2       Chris Delaney  Chris      Delaney  
#>  9 1716679   2020 referee3       Tanner Cervo   Tanner     Cervo    
#> 10 1716681   2020 referee1       Vern Bovell    Vern       Bovell   
#> # ℹ 238 more rows
#> # ℹ 7 more variables: scoreboard_name <chr>, first_name_initial <chr>,
#> #   last_name_initial <chr>, international_first_name <chr>,
#> #   international_first_name_initial <chr>, international_last_name <chr>,
#> #   international_last_name_initial <chr>