Baselight

March Madness Data

Datasets from 2008 - 2024 (2020 not Included)

@kaggle.nishaanamin_march_madness_data

Conference Stats Away
@kaggle.nishaanamin_march_madness_data.conference_stats_away

  • 83.43 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.1109.2104.10.6341676510238.9221556950.651.830.535.817.115.627.4722872.667.749.350.73535.69.511.35053.960.539.560.739.368.177.13380.2641.88418.38673.472.51.0451.08830.416-2.3
20242ACC10110.9100.90.7481696410537.8698224950.251.627.533.41714.727.572.827.272.56848.951.834.934.38.510.648.451.162.437.6623867.977.89781.0781.65362.32472.674.41.0351.09343.482-0.9
20243AE-5.7100.9106.60.34715057933848.850.128.533.817.215.92671.628.47471.449.851.331.3329.410.246.748.7643664.435.670.776.77679.0912.1476.23669.872.30.9961.05717.208-6.4
20244Amer3.3108.1104.80.588161649739.751552850.150.731.735.317.115.83068.831.27068.249.849.933.734.69.610.448.753.361.338.761.438.668.377.29380.3472.23730.45570.373.41.051.09426.317-2.8
20245ASun-8103.5111.50.2981955014525.6410256449.954.127.934.716.715.127.369.230.872.769.348.653.934.636.37.89.945.549.860.239.862.637.46976.77779.6682.0268.16472.872.21.0341.14218.353-8
20246B1012.8113.5100.70.7981534910432.0261437949.552.130.936.516.615.228.669.930.171.467.548.451.134.33699.650.755.265.134.9653567.677.91281.1611.98257.33373.872.81.0431.11252.53-0.5
20247B1213.711399.30.816140509035.7142857149.452.230.238.31817.230.870.629.469.267.649.951.532.335.69.49.251.356.962.837.262.937.167.677.58880.9162.09648.6077173.61.0261.08855.2280.11
20248BE13.2113.3100.10.806128517739.8437550.25226.829.816.515.828.269.830.271.867.549.95133.835.89.71150.955.161.238.861.638.467.777.72280.7722.10250.58375.475.51.0481.10151.390.09
20249BSky-7.1102.5109.60.3161575710036.3057324850.654.631.235.91816.325.872.327.774.267.851.754.932.535.96.79.548.852.4623863.336.768.277.24980.2022.0574.15972.471.91.0211.11417.578-6.2
202410BSth-3.2104.9108.10.415130468435.3846153849.35235.237.116.716.729.768.931.170.368.148.952.133.334.57.510.44449.265.134.962.937.168.276.7979.6662.2378.16969.873.11.0421.09819.043-5.5

CREATE TABLE conference_stats_away (
  "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
);

Share link

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