Skip to contents

Returns conference-only metrics, strengths of schedule, and bid probabilities (auto and at-large) for all teams in a conference.

Usage

bart_conf_stats(year = current_season(), conf = NULL)

Arguments

year

Defaults to current season (YYYY).

conf

Indicates conference (see details).

Value

Returns a tibble with 23 columns:

rk

double.

team

character.

seed

double.

finish

character.

conf_rec

character.

adj_oe

double.

adj_de

double.

barthag

double. The estimation of a team's win probability against the average Division 1 team on a neutral court.

eff_marg

double.

con_oe

double.

con_oe_rk

double.

con_de

double.

con_de_rk

double.

conf_barthag

double.

proj_rec

character.

conf_cur_sos

double. The current average Barthag rating of conference opponents.

conf_cur_sos_rk

double.

conf_fut_sos

double. The projected average Barthag rating of conference opponents

conf_fut_sos_rk

double.

conf_sos

double.

conf_sos_rk

double.

auto_prob

double. Probability of winning the conference tournament (automatic bid).

bid_prob

double. Probability of securing a tournament bid (auto or at-large)

Details

Accepted conference abbreviations for the `conf` argument are:

  • ‘A10’, ‘ACC’, ‘AE’, ‘ASun’, ‘Amer’, ‘B10’, ‘B12’, ‘BE’, ‘BSky’, ‘BSth’, ‘BW’, ‘CAA’, ‘CUSA’, ‘Horz’, ‘Ivy’, ‘MAAC’, ‘MAC’, ‘MEAC’, ‘MVC’, ‘MWC’, ‘NEC’, ‘OVC’, ‘P12’, ‘Pat’, ‘SB’, ‘SC’, ‘SEC’, ‘SWAC’, ‘Slnd’, ‘Sum’, ‘WAC’, ‘WCC’

Examples

bart_conf_stats(year=2021, conf='ACC')
#> # A tibble: 15 × 22
#>       rk team   seed finish conf_…¹ adj_oe adj_de barthag eff_m…² con_oe con_o…³
#>    <dbl> <chr> <dbl> <chr>  <chr>    <dbl>  <dbl>   <dbl>   <dbl>  <dbl>   <dbl>
#>  1    21 Virg…     4 R64    13-4      114.   94.5   0.894      22  115.        3
#>  2    10 Flor…     4 Sweet… 11-4      115.   93.1   0.921      27  121.        1
#>  3    50 Virg…    10 R64    9-4       110.   95.0   0.837      16  109.        9
#>  4    33 Geor…     9 R64    11-6      114.   96.3   0.874      20  113.        4
#>  5    37 Nort…     8 R64    10-6      109.   93.0   0.862      17  109.        8
#>  6    44 Clem…     7 R64    10-6      106.   91.5   0.842      10  104.       12
#>  7    62 Loui…    NA NA     8-5       107.   95.1   0.786      12  107.       11
#>  8    38 Syra…    11 Sweet… 9-7       113.   96.9   0.860      14  112.        6
#>  9    51 Nort…    NA NA     9-8       111.   96.6   0.831      13  111.        7
#> 10    32 Duke     NA NA     9-9       115.   97.2   0.874      17  116.        2
#> 11    86 Notr…    NA NA     7-11      113.  104.    0.738      12  113.        5
#> 12   101 Pitt…    NA NA     6-10      108.  100.    0.696       9  108.       10
#> 13   128 Miam…    NA NA     4-15      102.   99.5   0.580       0  100.       14
#> 14   157 Wake…    NA NA     3-15      102.  101.    0.521      -2   99.7      15
#> 15   161 Bost…    NA NA     2-11      104.  103.    0.516       0  103.       13
#> # … with 11 more variables: con_de <dbl>, con_de_rk <dbl>, conf_barthag <dbl>,
#> #   proj_rec <chr>, conf_cur_sos <dbl>, conf_cur_sos_rk <dbl>,
#> #   conf_fut_sos <dbl>, conf_fut_sos_rk <dbl>, conf_sos <dbl>,
#> #   conf_sos_rk <dbl>, year <dbl>, and abbreviated variable names ¹​conf_rec,
#> #   ²​eff_marg, ³​con_oe_rk