Skip to contents

Returns current T-Rank ratings and two forms of strength of schedule.

Usage

bart_ratings(year = current_season())

Arguments

year

Defaults to current season (YYYY).

Value

Returns a tibble with 19 columns:

team

character.

conf

character.

barthag

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

barthag_rk

integer.

adj_o

double.

adj_o_rk

integer.

adj_d

double.

adj_d_rk

integer.

adj_t

double.

adj_t_rk

integer.

wab

double. The number of wins above or below the expected total from a bubble team against the same schedule.

nc_elite_sos

double.

nc_fut_sos

double.

nc_cur_sos

double.

ov_elite_sos

double.

ov_fut_sos

double.

ov_cur_sos

double.

seed

integer.

year

double.

Details

  • `x_cur_sos` is the current average Barthag rating of opponents.

  • `x_fut_sos` is the projected average Barthag rating of opponents.

Examples

bart_ratings(year=2022)
#> # A tibble: 358 x 19
#>    team    conf  barthag barthag_rk adj_o adj_o_rk adj_d adj_d_rk adj_t adj_t_rk
#>    <chr>   <chr>   <dbl>      <int> <dbl>    <int> <dbl>    <int> <dbl>    <int>
#>  1 Gonzaga WCC     0.966          1  120.        4  89.9        9  72.6        5
#>  2 Houston Amer    0.959          2  117.       10  88.5        6  63.7      336
#>  3 Kansas  B12     0.958          3  120.        5  91.3       13  69.1       71
#>  4 Texas ~ B12     0.951          4  111.       41  85.4        1  66.3      223
#>  5 Baylor  B12     0.949          5  118.        8  91.3       14  67.6      149
#>  6 Duke    ACC     0.944          6  123.        1  96.0       53  67.4      161
#>  7 Tennes~ SEC     0.944          7  111.       34  87.1        3  67.4      164
#>  8 Villan~ BE      0.935          8  117.        9  93.0       26  62.2      350
#>  9 Arizona P12     0.934          9  118.        7  93.7       35  72.3        9
#> 10 UCLA    P12     0.932         10  116.       12  92.2       20  65.4      274
#> # ... with 348 more rows, and 9 more variables: wab <dbl>, nc_elite_sos <dbl>,
#> #   nc_fut_sos <dbl>, nc_cur_sos <dbl>, ov_elite_sos <dbl>, ov_fut_sos <dbl>,
#> #   ov_cur_sos <dbl>, seed <int>, year <dbl>