Skip to main content
Version: main

WBB — Bart Torvik Women's T-Rank (barttorvik.com/ncaaw)

sportsdataverse.wbb — 1 endpoint.

bart_wbb_ratings

GET /ncaaw/{year}_team_results.csv — women's T-Rank team ratings (adjoe/adjde/barthag, one row per team; the team/conf pair feeds the WBB crosswalk).

Endpoint URL: GET https://barttorvik.com/ncaaw/{year}_team_results.csv

Valid URL: https://barttorvik.com/ncaaw/2025_team_results.csv

API ParameterPythonPatternRequiredNullableDescription
yearyearYyear path parameter.

Returns

return_parsed=True (default) — a tidy polars.DataFrame with the columns below; pass return_as_pandas=True for a pandas.DataFrame.

col_nametypedescription
rankintegerT-Rank position (overall barthag rank).
teamcharacterTorvik team name (the crosswalk join key).
confcharacterTorvik conference abbreviation (e.g. B12, ACC, BE).
recordcharacterOverall win-loss record to date.
adjoenumericAdjusted offensive efficiency (points per 100 possessions vs an average defense).
oe_rankintegerNational rank of adjusted offensive efficiency.
adjdenumericAdjusted defensive efficiency (points allowed per 100 possessions vs an average offense).
de_rankintegerNational rank of adjusted defensive efficiency.
barthagnumericTorvik power rating: win probability vs an average team on a neutral floor.
rank_2integerBarthag rank repeated as shipped in the source CSV (duplicate of rank).
proj_wnumericProjected full-season wins.
proj_lnumericProjected full-season losses.
pro_con_wnumericProjected conference wins.
pro_con_lnumericProjected conference losses.
con_reccharacterConference win-loss record to date.
sosnumericStrength of schedule faced to date.
ncsosnumericNon-conference strength of schedule.
consosnumericConference strength of schedule.
proj_sosnumericProjected full-season strength of schedule.
proj_noncon_sosnumericProjected non-conference strength of schedule.
proj_con_sosnumericProjected conference strength of schedule.
elite_sosnumericElite strength of schedule (share of schedule vs elite opponents).
elite_noncon_sosnumericElite non-conference strength of schedule.
opp_oenumericAverage opponent offensive efficiency.
opp_denumericAverage opponent defensive efficiency.
opp_proj_oenumericProjected average opponent offensive efficiency.
opp_proj_denumericProjected average opponent defensive efficiency.
con_adj_oenumericAdjusted offensive efficiency in conference games only.
con_adj_denumericAdjusted defensive efficiency in conference games only.
qual_onumericOffensive efficiency vs quality (top-tier) opponents.
qual_dnumericDefensive efficiency vs quality (top-tier) opponents.
qual_barthagnumericBarthag computed from the quality-opponent efficiency splits.
qual_gamesnumericNumber of quality games underlying the qual_* splits.
funnumericTorvik's FUN style/entertainment index.
con_pfnumericPoints scored in conference play.
con_panumericPoints allowed in conference play.
con_possnumericPossessions played in conference play.
con_oenumericRaw offensive efficiency in conference play.
con_denumericRaw defensive efficiency in conference play.
con_sos_remainnumericStrength of the remaining conference schedule.
conf_win_percentnumericConference win percentage.
wabnumericWins above bubble (resume quality vs a bubble-level team).
wab_rkintegerNational rank of wins above bubble.
fun_rkintegerNational rank of the FUN index.
adjtnumericAdjusted tempo (possessions per 40 minutes).

return_parsed=False — the raw CSV response body (str).

Example

bart_wbb_ratings(year=2025)

Last validated n/a.