Skip to contents

Returns team shooting totals and shares by shot location. Data returns back to 2010.

Usage

bart_team_shooting(year = current_season())

Arguments

year

Defaults to current season (YYYY).

Value

Returns a tibble with 20 columns:

team

character.

seed

double.

conf

character.

dunk_fg

character.

dunk_share

double.

dunk_fg_d

character.

dunk_share_d

double.

close_fg

character.

close_share

double.

close_fg_d

character.

close_share_d

double.

far_fg

character.

far_share

double.

far_fg_d

character.

far_share_d

double.

three_fg

character.

three_share

double.

three_fg_d

character.

three_share_d

double.

year

double.

Details

`x_share` represents the percentage of made FGs that fall under that category.

Examples

bart_team_shooting(year=2019)
#> # A tibble: 353 x 20
#>    team            seed conf  dunk_fg dunk_share dunk_fg_d dunk_share_d close_fg
#>    <chr>          <dbl> <chr> <chr>        <dbl> <chr>            <dbl> <chr>   
#>  1 Duke               1 ACC   196-216       14.3 112-142            9   691-993 
#>  2 Gonzaga            1 WCC   153-166       11.5 51-61              4.2 684-975 
#>  3 Buffalo            6 MAC   101-111        8.7 43-52              3.8 611-973 
#>  4 Texas Southern    NA SWAC  136-148       10.2 70-76              5.1 591-951 
#>  5 Memphis           NA Amer  76-86          6   92-102             7.8 574-946 
#>  6 FIU               NA CUSA  71-89          7.8 89-99              8.2 525-942 
#>  7 South Florida     NA Amer  82-90          7.1 66-76              6.1 497-911 
#>  8 North Carolin~    NA ACC   86-97          6.5 97-108             8.1 532-885 
#>  9 TCU               NA B12   116-126        9.3 82-95              6.7 546-880 
#> 10 Seton Hall        10 BE    73-94          7.3 62-74              6.3 515-877 
#> # ... with 343 more rows, and 12 more variables: close_share <dbl>,
#> #   close_fg_d <chr>, close_share_d <dbl>, far_fg <chr>, far_share <dbl>,
#> #   far_fg_d <chr>, far_share_d <dbl>, three_fg <chr>, three_share <dbl>,
#> #   three_fg_d <chr>, three_share_d <dbl>, year <dbl>