Skip to contents

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

Usage

load_cebl_player_boxscores(seasons = NULL)

Arguments

seasons

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

Value

A data frame containing the CEBL player boxscores for the specified seasons.

Column NameType
game_iddbl
seasondbl
team_namechr
player_numberdbl
player_namechr
player_positionchr
minuteschr
podblsdbl
field_goals_madedbl
field_goals_attempteddbl
field_goal_percentagedbl
two_podbl_field_goals_madedbl
two_podbl_field_goals_attempteddbl
two_podbl__percentagedbl
three_podbl_field_goals_madedbl
three_podbl_field_goals_attempteddbl
three_podbl_percentagedbl
free_throws_madedbl
free_throws_attempteddbl
free_throw_percentagedbl
offensive_reboundsdbl
defensive_reboundsdbl
reboundsdbl
assistsdbl
turnoversdbl
stealsdbl
blocksdbl
blocks_receiveddbl
personal_foulsdbl
fouls_drawndbl
plus_minusdbl
index_ratingdbl
index_rating_2dbl
index_rating_3dbl
index_rating_4dbl
index_rating_5dbl
index_rating_6dbl
index_rating_7lgl
second_chance_pointslgl
fast_break_pointslgl
points_in_the_paintdbl
first_namechr
first_name_initialchr
last_namechr
last_name_initialchr
international_first_namechr
international_first_name_initialchr
international_last_namechr
international_last_name_initialchr
scoreboard_namechr
activelgl
starterlgl
captainlgl
photo_tchr
photo_schr

Examples

load_cebl_player_boxscores(2020:2021)
#> # A tibble: 11,245 × 55
#>    game_id season team_name    player_number player_name position minutes points
#>      <dbl>  <dbl> <chr>                <dbl> <chr>       <chr>    <chr>    <dbl>
#>  1 1140283   2019 Saskatchewa…             2 Chan De Ci… G        0:00         0
#>  2 1140283   2019 Saskatchewa…             3 Michael Li… G        2:25         2
#>  3 1140283   2019 Saskatchewa…             4 Tavrion Da… F        36:21       29
#>  4 1140283   2019 Saskatchewa…             8 Justus All… G        12:60        5
#>  5 1140283   2019 Saskatchewa…            10 Alex Campb… G        29:02       19
#>  6 1140283   2019 Saskatchewa…            11 Marlon Joh… F        31:45       19
#>  7 1140283   2019 Saskatchewa…            13 Bruce Mass… G        37:10       10
#>  8 1140283   2019 Saskatchewa…            14 Negus Webs… G        33:57        9
#>  9 1140283   2019 Saskatchewa…            21 Jelane Pry… F        9:21         2
#> 10 1140283   2019 Saskatchewa…            24 Eric Kibi   F        6:59         2
#> # ℹ 11,235 more rows
#> # ℹ 47 more variables: field_goals_made <dbl>, field_goals_attempted <dbl>,
#> #   field_goal_percentage <dbl>, two_point_field_goals_made <dbl>,
#> #   two_point_field_goals_attempted <dbl>, two_point_percentage <dbl>,
#> #   three_point_field_goals_made <dbl>,
#> #   three_point_field_goals_attempted <dbl>, three_point_percentage <dbl>,
#> #   free_throws_made <dbl>, free_throws_attempted <dbl>, …