Baselight

College Basketball Dataset

Datasets for the 2013 through 2021 seasons

@kaggle.andrewsundberg_college_basketball_dataset

Loading...
Loading...

About this Dataset

College Basketball Dataset

Content

Data from the 2013, 2014, 2015, 2016, 2017, 2018, 2019, 2020, 2021, 2022, 2023 Division I college basketball seasons.

cbb.csv has seasons 2013-2019 and seasons 2021-2023 combined

The 2020 season's data set is kept separate from the other seasons, because there was no postseason due to the Coronavirus.

cbb24 contains data as of 3/18/2024. This dataset will be updated and added to cbb.csv at the conclusion of the Tournament.

Variables

RK (Only in cbb20): The ranking of the team at the end of the regular season according to barttorvik

TEAM: The Division I college basketball school

CONF: The Athletic Conference in which the school participates in (A10 = Atlantic 10, ACC = Atlantic Coast Conference, AE = America East, Amer = American, ASun = ASUN, B10 = Big Ten, B12 = Big 12, BE = Big East, BSky = Big Sky, BSth = Big South, BW = Big West, CAA = Colonial Athletic Association, CUSA = Conference USA, Horz = Horizon League, Ivy = Ivy League, MAAC = Metro Atlantic Athletic Conference, MAC = Mid-American Conference, MEAC = Mid-Eastern Athletic Conference, MVC = Missouri Valley Conference, MWC = Mountain West, NEC = Northeast Conference, OVC = Ohio Valley Conference, P12 = Pac-12, Pat = Patriot League, SB = Sun Belt, SC = Southern Conference, SEC = South Eastern Conference, Slnd = Southland Conference, Sum = Summit League, SWAC = Southwestern Athletic Conference, WAC = Western Athletic Conference, WCC = West Coast Conference)

G: Number of games played

W: Number of games won

ADJOE: Adjusted Offensive Efficiency (An estimate of the offensive efficiency (points scored per 100 possessions) a team would have against the average Division I defense)

ADJDE: Adjusted Defensive Efficiency (An estimate of the defensive efficiency (points allowed per 100 possessions) a team would have against the average Division I offense)

BARTHAG: Power Rating (Chance of beating an average Division I team)

EFG_O: Effective Field Goal Percentage Shot

EFG_D: Effective Field Goal Percentage Allowed

TOR: Turnover Percentage Allowed (Turnover Rate)

TORD: Turnover Percentage Committed (Steal Rate)

ORB: Offensive Rebound Rate

DRB: Offensive Rebound Rate Allowed

FTR : Free Throw Rate (How often the given team shoots Free Throws)

FTRD: Free Throw Rate Allowed

2P_O: Two-Point Shooting Percentage

2P_D: Two-Point Shooting Percentage Allowed

3P_O: Three-Point Shooting Percentage

3P_D: Three-Point Shooting Percentage Allowed

ADJ_T: Adjusted Tempo (An estimate of the tempo (possessions per 40 minutes) a team would have against the team that wants to play at an average Division I tempo)

WAB: Wins Above Bubble (The bubble refers to the cut off between making the NCAA March Madness Tournament and not making it)

POSTSEASON: Round where the given team was eliminated or where their season ended (R68 = First Four, R64 = Round of 64, R32 = Round of 32, S16 = Sweet Sixteen, E8 = Elite Eight, F4 = Final Four, 2ND = Runner-up, Champion = Winner of the NCAA March Madness Tournament for that given year)

SEED: Seed in the NCAA March Madness Tournament

YEAR: Season

Acknowledgements

This data was scraped from http://barttorvik.com/trank.php#. I cleaned the data set and added the POSTSEASON, SEED, and YEAR columns.

Tables

Cbb

@kaggle.andrewsundberg_college_basketball_dataset.cbb
  • 122.44 KB
  • 3523 rows
  • 24 columns
Loading...

CREATE TABLE cbb (
  "team" VARCHAR,
  "conf" VARCHAR,
  "g" BIGINT,
  "w" BIGINT,
  "adjoe" DOUBLE,
  "adjde" DOUBLE,
  "barthag" DOUBLE,
  "efg_o" DOUBLE,
  "efg_d" DOUBLE,
  "tor" DOUBLE,
  "tord" DOUBLE,
  "orb" DOUBLE,
  "drb" DOUBLE,
  "ftr" DOUBLE,
  "ftrd" DOUBLE,
  "n_2p_o" DOUBLE,
  "n_2p_d" DOUBLE,
  "n_3p_o" DOUBLE,
  "n_3p_d" DOUBLE,
  "adj_t" DOUBLE,
  "wab" DOUBLE,
  "postseason" VARCHAR,
  "seed" DOUBLE,
  "year" BIGINT
);

Cbb13

@kaggle.andrewsundberg_college_basketball_dataset.cbb13
  • 36.69 KB
  • 347 rows
  • 23 columns
Loading...

CREATE TABLE cbb13 (
  "team" VARCHAR,
  "conf" VARCHAR,
  "g" BIGINT,
  "w" BIGINT,
  "adjoe" DOUBLE,
  "adjde" DOUBLE,
  "barthag" DOUBLE,
  "efg_o" DOUBLE,
  "efg_d" DOUBLE,
  "tor" DOUBLE,
  "tord" DOUBLE,
  "orb" DOUBLE,
  "drb" DOUBLE,
  "ftr" DOUBLE,
  "ftrd" DOUBLE,
  "n_2p_o" DOUBLE,
  "n_2p_d" DOUBLE,
  "n_3p_o" DOUBLE,
  "n_3p_d" DOUBLE,
  "adj_t" DOUBLE,
  "wab" DOUBLE,
  "postseason" VARCHAR,
  "seed" DOUBLE
);

Cbb14

@kaggle.andrewsundberg_college_basketball_dataset.cbb14
  • 36.63 KB
  • 351 rows
  • 23 columns
Loading...

CREATE TABLE cbb14 (
  "team" VARCHAR,
  "conf" VARCHAR,
  "g" BIGINT,
  "w" BIGINT,
  "adjoe" DOUBLE,
  "adjde" DOUBLE,
  "barthag" DOUBLE,
  "efg_o" DOUBLE,
  "efg_d" DOUBLE,
  "tor" DOUBLE,
  "tord" DOUBLE,
  "orb" DOUBLE,
  "drb" DOUBLE,
  "ftr" DOUBLE,
  "ftrd" DOUBLE,
  "n_2p_o" DOUBLE,
  "n_2p_d" DOUBLE,
  "n_3p_o" DOUBLE,
  "n_3p_d" DOUBLE,
  "adj_t" DOUBLE,
  "wab" DOUBLE,
  "postseason" VARCHAR,
  "seed" DOUBLE
);

Cbb15

@kaggle.andrewsundberg_college_basketball_dataset.cbb15
  • 36.85 KB
  • 351 rows
  • 23 columns
Loading...

CREATE TABLE cbb15 (
  "team" VARCHAR,
  "conf" VARCHAR,
  "g" BIGINT,
  "w" BIGINT,
  "adjoe" DOUBLE,
  "adjde" DOUBLE,
  "barthag" DOUBLE,
  "efg_o" DOUBLE,
  "efg_d" DOUBLE,
  "tor" DOUBLE,
  "tord" DOUBLE,
  "orb" DOUBLE,
  "drb" DOUBLE,
  "ftr" DOUBLE,
  "ftrd" DOUBLE,
  "n_2p_o" DOUBLE,
  "n_2p_d" DOUBLE,
  "n_3p_o" DOUBLE,
  "n_3p_d" DOUBLE,
  "adj_t" DOUBLE,
  "wab" DOUBLE,
  "postseason" VARCHAR,
  "seed" DOUBLE
);

Cbb16

@kaggle.andrewsundberg_college_basketball_dataset.cbb16
  • 36.37 KB
  • 351 rows
  • 23 columns
Loading...

CREATE TABLE cbb16 (
  "team" VARCHAR,
  "conf" VARCHAR,
  "g" BIGINT,
  "w" BIGINT,
  "adjoe" DOUBLE,
  "adjde" DOUBLE,
  "barthag" DOUBLE,
  "efg_o" DOUBLE,
  "efg_d" DOUBLE,
  "tor" DOUBLE,
  "tord" DOUBLE,
  "orb" DOUBLE,
  "drb" DOUBLE,
  "ftr" DOUBLE,
  "ftrd" DOUBLE,
  "n_2p_o" DOUBLE,
  "n_2p_d" DOUBLE,
  "n_3p_o" DOUBLE,
  "n_3p_d" DOUBLE,
  "adj_t" DOUBLE,
  "wab" DOUBLE,
  "postseason" VARCHAR,
  "seed" DOUBLE
);

Cbb17

@kaggle.andrewsundberg_college_basketball_dataset.cbb17
  • 36.5 KB
  • 351 rows
  • 23 columns
Loading...

CREATE TABLE cbb17 (
  "team" VARCHAR,
  "conf" VARCHAR,
  "g" BIGINT,
  "w" BIGINT,
  "adjoe" DOUBLE,
  "adjde" DOUBLE,
  "barthag" DOUBLE,
  "efg_o" DOUBLE,
  "efg_d" DOUBLE,
  "tor" DOUBLE,
  "tord" DOUBLE,
  "orb" DOUBLE,
  "drb" DOUBLE,
  "ftr" DOUBLE,
  "ftrd" DOUBLE,
  "n_2p_o" DOUBLE,
  "n_2p_d" DOUBLE,
  "n_3p_o" DOUBLE,
  "n_3p_d" DOUBLE,
  "adj_t" DOUBLE,
  "wab" DOUBLE,
  "postseason" VARCHAR,
  "seed" DOUBLE
);

Cbb18

@kaggle.andrewsundberg_college_basketball_dataset.cbb18
  • 36.46 KB
  • 351 rows
  • 23 columns
Loading...

CREATE TABLE cbb18 (
  "team" VARCHAR,
  "conf" VARCHAR,
  "g" BIGINT,
  "w" BIGINT,
  "adjoe" DOUBLE,
  "adjde" DOUBLE,
  "barthag" DOUBLE,
  "efg_o" DOUBLE,
  "efg_d" DOUBLE,
  "tor" DOUBLE,
  "tord" DOUBLE,
  "orb" DOUBLE,
  "drb" DOUBLE,
  "ftr" DOUBLE,
  "ftrd" DOUBLE,
  "n_2p_o" DOUBLE,
  "n_2p_d" DOUBLE,
  "n_3p_o" DOUBLE,
  "n_3p_d" DOUBLE,
  "adj_t" DOUBLE,
  "wab" DOUBLE,
  "postseason" VARCHAR,
  "seed" DOUBLE
);

Cbb19

@kaggle.andrewsundberg_college_basketball_dataset.cbb19
  • 36.8 KB
  • 353 rows
  • 23 columns
Loading...

CREATE TABLE cbb19 (
  "team" VARCHAR,
  "conf" VARCHAR,
  "g" BIGINT,
  "w" BIGINT,
  "adjoe" DOUBLE,
  "adjde" DOUBLE,
  "barthag" DOUBLE,
  "efg_o" DOUBLE,
  "efg_d" DOUBLE,
  "tor" DOUBLE,
  "tord" DOUBLE,
  "orb" DOUBLE,
  "drb" DOUBLE,
  "ftr" DOUBLE,
  "ftrd" DOUBLE,
  "n_2p_o" DOUBLE,
  "n_2p_d" DOUBLE,
  "n_3p_o" DOUBLE,
  "n_3p_d" DOUBLE,
  "adj_t" DOUBLE,
  "wab" DOUBLE,
  "postseason" VARCHAR,
  "seed" DOUBLE
);

Cbb20

@kaggle.andrewsundberg_college_basketball_dataset.cbb20
  • 37.35 KB
  • 353 rows
  • 22 columns
Loading...

CREATE TABLE cbb20 (
  "rk" BIGINT,
  "team" VARCHAR,
  "conf" VARCHAR,
  "g" BIGINT,
  "w" BIGINT,
  "adjoe" DOUBLE,
  "adjde" DOUBLE,
  "barthag" DOUBLE,
  "efg_o" DOUBLE,
  "efg_d" DOUBLE,
  "tor" DOUBLE,
  "tord" DOUBLE,
  "orb" DOUBLE,
  "drb" DOUBLE,
  "ftr" DOUBLE,
  "ftrd" DOUBLE,
  "n_2p_o" DOUBLE,
  "n_2p_d" DOUBLE,
  "n_3p_o" DOUBLE,
  "n_3p_d" DOUBLE,
  "adj_t" DOUBLE,
  "wab" DOUBLE
);

Cbb21

@kaggle.andrewsundberg_college_basketball_dataset.cbb21
  • 36.24 KB
  • 347 rows
  • 23 columns
Loading...

CREATE TABLE cbb21 (
  "team" VARCHAR,
  "conf" VARCHAR,
  "g" BIGINT,
  "w" BIGINT,
  "adjoe" DOUBLE,
  "adjde" DOUBLE,
  "barthag" DOUBLE,
  "efg_o" DOUBLE,
  "efg_d" DOUBLE,
  "tor" DOUBLE,
  "tord" DOUBLE,
  "orb" DOUBLE,
  "drb" DOUBLE,
  "ftr" DOUBLE,
  "ftrd" DOUBLE,
  "n_2p_o" DOUBLE,
  "n_2p_d" DOUBLE,
  "n_3p_o" DOUBLE,
  "n_3p_d" DOUBLE,
  "adj_t" DOUBLE,
  "wab" DOUBLE,
  "postseason" VARCHAR,
  "seed" DOUBLE
);

Cbb22

@kaggle.andrewsundberg_college_basketball_dataset.cbb22
  • 36.55 KB
  • 358 rows
  • 23 columns
Loading...

CREATE TABLE cbb22 (
  "team" VARCHAR,
  "conf" VARCHAR,
  "g" BIGINT,
  "w" BIGINT,
  "adjoe" DOUBLE,
  "adjde" DOUBLE,
  "barthag" DOUBLE,
  "efg_o" DOUBLE,
  "efgd_d" DOUBLE,
  "tor" DOUBLE,
  "tord" DOUBLE,
  "orb" DOUBLE,
  "drb" DOUBLE,
  "ftr" DOUBLE,
  "ftrd" DOUBLE,
  "n_2p_o" DOUBLE,
  "n_2p_d" DOUBLE,
  "n_3p_o" DOUBLE,
  "n_3p_d" DOUBLE,
  "adj_t" DOUBLE,
  "wab" DOUBLE,
  "postseason" VARCHAR,
  "seed" DOUBLE
);

Cbb23

@kaggle.andrewsundberg_college_basketball_dataset.cbb23
  • 36.68 KB
  • 363 rows
  • 23 columns
Loading...

CREATE TABLE cbb23 (
  "team" VARCHAR,
  "conf" VARCHAR,
  "g" BIGINT,
  "w" BIGINT,
  "adjoe" DOUBLE,
  "adjde" DOUBLE,
  "barthag" DOUBLE,
  "efg_o" DOUBLE,
  "efg_d" DOUBLE,
  "tor" DOUBLE,
  "tord" DOUBLE,
  "orb" DOUBLE,
  "drb" DOUBLE,
  "ftr" DOUBLE,
  "ftrd" DOUBLE,
  "n_2p_o" DOUBLE,
  "n_2p_d" DOUBLE,
  "n_3p_o" DOUBLE,
  "n_3p_d" DOUBLE,
  "adj_t" DOUBLE,
  "wab" DOUBLE,
  "postseason" VARCHAR,
  "seed" DOUBLE
);

Cbb24

@kaggle.andrewsundberg_college_basketball_dataset.cbb24
  • 38.6 KB
  • 362 rows
  • 23 columns
Loading...

CREATE TABLE cbb24 (
  "rk" BIGINT,
  "team" VARCHAR,
  "conf" VARCHAR,
  "g" BIGINT,
  "w" BIGINT,
  "adjoe" DOUBLE,
  "adjde" DOUBLE,
  "barthag" DOUBLE,
  "efg" DOUBLE,
  "efgd" DOUBLE,
  "tor" DOUBLE,
  "tord" DOUBLE,
  "orb" DOUBLE,
  "drb" DOUBLE,
  "ftr" DOUBLE,
  "ftrd" DOUBLE,
  "n_2p_o" DOUBLE,
  "n_2p_d" DOUBLE,
  "n_3p_o" DOUBLE,
  "n_3p_d" DOUBLE,
  "adj_t" DOUBLE,
  "wab" DOUBLE,
  "seed" DOUBLE
);

Share link

Anyone who has the link will be able to view this.