Returns team shooting totals and shares by shot location. Data returns back to 2010.
Usage
bart_team_shooting(year = current_season(), conf = NULL, team = NULL)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. 
Examples
bart_team_shooting(year=2019)
#> ── Team Shooting ─────────────────────────────────────────────── toRvik 1.1.0 ──
#> ℹ Data updated: 2022-09-20 01:39:24 UTC
#> # A tibble: 353 × 20
#>    team       seed conf  dunk_fg dunk_…¹ dunk_…² dunk_…³ close…⁴ close…⁵ close…⁶
#>    <chr>     <dbl> <chr> <chr>     <dbl> <chr>     <dbl> <chr>     <dbl> <chr>  
#>  1 Duke          1 ACC   196-216    14.3 112-142     9   691-993    41.1 501-893
#>  2 Gonzaga       1 WCC   153-166    11.5 51-61       4.2 684-975    43.5 449-885
#>  3 Buffalo       6 MAC   101-111     8.7 43-52       3.8 611-973    42.6 479-833
#>  4 Texas So…    NA SWAC  136-148    10.2 70-76       5.1 591-951    42.3 510-824
#>  5 Memphis      NA Amer  76-86       6   92-102      7.8 574-946    42.2 457-793
#>  6 FIU          NA CUSA  71-89       7.8 89-99       8.2 525-942    48.9 515-862
#>  7 South Fl…    NA Amer  82-90       7.1 66-76       6.1 497-911    44.3 448-820
#>  8 North Ca…    NA ACC   86-97       6.5 97-108      8.1 532-885    38.2 524-873
#>  9 TCU          NA B12   116-126     9.3 82-95       6.7 546-880    40.6 476-789
#> 10 Seton Ha…    10 BE    73-94       7.3 62-74       6.3 515-877    43.4 374-682
#> # … with 343 more rows, 10 more variables: 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 <int>, and
#> #   abbreviated variable names ¹dunk_share, ²dunk_fg_d, ³dunk_share_d,
#> #   ⁴close_fg, ⁵close_share, ⁶close_fg_d
