Baselight

College Basketball Dataset

Datasets for the 2013 through 2021 seasons

@kaggle.andrewsundberg_college_basketball_dataset

Cbb20
@kaggle.andrewsundberg_college_basketball_dataset.cbb20

  • 37.35 KB
  • 353 rows
  • 22 columns
rk

RK

team

TEAM

conf

CONF

g

G

w

W

adjoe

ADJOE

adjde

ADJDE

barthag

BARTHAG

efg_o

EFG O

efg_d

EFG D

tor

TOR

tord

TORD

orb

ORB

drb

DRB

ftr

FTR

ftrd

FTRD

n_2p_o

2P O

n_2p_d

2P D

n_3p_o

3P O

n_3p_d

3P D

adj_t

ADJ T

wab

WAB

1KansasB123028116.187.70.961653.743.718.718.632.626.435.823.254.942.434.130.567.410.8
2BaylorB123026114.588.40.951349.445.217.822.735.829.830.830.847.544.435.131.166.28.5
3GonzagaWCC3331121.394.30.947257.547.615.318.433.622.738.821.857.447.438.632727.7
4DaytonA103129119.593.40.944559.746.61818.826.426.633.930.962.345.137.13367.56.8
5Michigan St.B103122114.891.30.932652.643.318.115.832.82630.829.352.943.434.828.769.35.2
6DukeACC3125115.391.90.93152.645.717.820.234.82835.630.952.54635.229.971.75.1
7CreightonBE3024120.696.40.928955.248.415.917.623.930.228.823.45348.938.731.868.36.1
8Ohio St.B103121114.692.60.9252.346.219.118.331.125.536.729.349.744.237.332.766.23.8
9LouisvilleACC3124115.193.90.91252.545.11817.4322532.22950.145.137.630.166.94.3
10San Diego St.MWC3130113.892.80.911954.645.216.221.328.225.428.330.65345.337.930.164.76.7

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
);

Share link

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