Baselight

March Madness Data

Datasets from 2008 - 2024 (2020 not Included)

@kaggle.nishaanamin_march_madness_data

Conference Stats
@kaggle.nishaanamin_march_madness_data.conference_stats

  • 85.24 KB
  • 519 rows
  • 45 columns
year

YEAR

conf_id

CONF ID

conf

CONF

badj_em

BADJ EM

badj_o

BADJ O

badj_d

BADJ D

barthag

BARTHAG

g

G

w

W

l

L

win

WIN%

efg

EFG%

efgd

EFGD%

ftr

FTR

ftrd

FTRD

tov

TOV%

tov_d

TOV%D

oreb

OREB%

dreb

DREB%

op_oreb

OP OREB%

op_dreb

OP DREB%

raw_t

RAW T

n_2pt

2PT%

n_2pt_d

2PT%D

n_3pt

3PT%

n_3pt_d

3PT%D

blk

BLK%

blked

BLKED%

ast

AST%

op_ast

OP AST %

n_2ptr

2PTR

n_3ptr

3PTR

n_2ptrd

2PTRD

n_3ptrd

3PTRD

badj_t

BADJ T

avg_hgt

AVG HGT

eff_hgt

EFF HGT

exp

EXP

talent

TALENT

ft

FT%

op_ft

OP FT%

pppo

PPPO

pppd

PPPD

elite_sos

ELITE SOS

wab

WAB

20241A105.6108.1102.50.64848127220956.5488565551.349.333.632.316.716.828.371.728.371.767.650.748.534.933.710.710.252.951.660.239.861.238.86877.13380.2641.88418.38672.271.81.0671.03518.353-5.8
20242ACC12111.799.70.78749228221057.3170731751.549.931.429.815.716.728.572.627.471.568.451.149.834.733.410.1950.749.562.537.562.137.968.477.89781.0781.65362.32473.873.11.0831.03727.996-2
20243AE-5.2101.4106.60.3627013313749.2592592649.649.230.731.816.816.1267228747150.550.232.131.69.610.147.347.163.336.764.835.270.276.77679.0912.1476.23671.371.21.021.03411.337-10.4
20244Amer4.2108.21040.61244223720553.619909550.649.834.632.416.41730.769.530.569.368.550.549.433.833.610.29.950.751.261.838.261.538.568.577.29380.3472.23730.4557271.61.0771.05417.309-7
20245ASun-7.9103.8111.70.30135515320243.0985915551.152.730.73315.915.428.1703071.9695052.135.235.98.69.34647.2613962.237.868.776.77779.6682.0268.16473.172.51.0691.11411.659-12
20246B1015.9114.398.40.84946027019058.6956521751.649.334.831.515.916.830.371.228.869.768.351.348.334.833.99.88.954.351.664.435.664.835.268.377.91281.1611.98257.33372.672.61.0961.03632.6580.01
20247B1217.7113.996.20.87545728417362.1444201351.848.533.932.117.318.531.971.828.268.168.351.848.334.632.610.49.155.752.262.437.662.637.468.477.58880.9162.09648.60772.471.71.090.99833.4011.2
20248BE14.8113.698.80.83336020315756.3888888951.949.729.827.816.416.530.171.528.569.968.151.94934.633.910.4105552.660.839.262.537.568.377.72280.7722.10250.58374.873.71.091.04233.917-0.46
20249BSky-5.5103.51090.35530714516247.23127036525332.133.917.316.926.272.827.273.867.552.553.334.2357.78.550.349.361.538.563.636.46877.24980.2022.0574.15972.972.71.0551.08211.167-11.4
202410BSth-3.5104.3107.80.40626612713947.744360950.350.837.437.117.116.729.870.329.770.268.149.951.33433.48.38.946.346.664.235.8643668.176.7979.6662.2378.16970.671.91.0571.07112.148-10.4

CREATE TABLE conference_stats (
  "year" BIGINT,
  "conf_id" BIGINT,
  "conf" VARCHAR,
  "badj_em" DOUBLE,
  "badj_o" DOUBLE,
  "badj_d" DOUBLE,
  "barthag" DOUBLE,
  "g" BIGINT,
  "w" BIGINT,
  "l" BIGINT,
  "win" DOUBLE,
  "efg" DOUBLE,
  "efgd" DOUBLE,
  "ftr" DOUBLE,
  "ftrd" DOUBLE,
  "tov" DOUBLE,
  "tov_d" DOUBLE,
  "oreb" DOUBLE,
  "dreb" DOUBLE,
  "op_oreb" DOUBLE,
  "op_dreb" DOUBLE,
  "raw_t" DOUBLE,
  "n_2pt" DOUBLE,
  "n_2pt_d" DOUBLE,
  "n_3pt" DOUBLE,
  "n_3pt_d" DOUBLE,
  "blk" DOUBLE,
  "blked" DOUBLE,
  "ast" DOUBLE,
  "op_ast" DOUBLE,
  "n_2ptr" DOUBLE,
  "n_3ptr" DOUBLE,
  "n_2ptrd" DOUBLE,
  "n_3ptrd" DOUBLE,
  "badj_t" DOUBLE,
  "avg_hgt" DOUBLE,
  "eff_hgt" DOUBLE,
  "exp" DOUBLE,
  "talent" DOUBLE,
  "ft" DOUBLE,
  "op_ft" DOUBLE,
  "pppo" DOUBLE,
  "pppd" DOUBLE,
  "elite_sos" DOUBLE,
  "wab" DOUBLE
);