Baselight

March Madness Data

Datasets from 2008 - 2024 (2020 not Included)

@kaggle.nishaanamin_march_madness_data

Team Results
@kaggle.nishaanamin_march_madness_data.team_results

  • 22.46 KB
  • 236 rows
  • 20 columns
team_id

TEAM ID

team

TEAM

pake

PAKE

pake_rank

PAKE RANK

pase

PASE

pase_rank

PASE RANK

games

GAMES

w

W

l

L

win

WIN%

r64

R64

r32

R32

s16

S16

e8

E8

f4

F4

f2

F2

champ

CHAMP

top2

TOP2

f4_234f67

F4%

champ_337e2f

CHAMP%

1Abilene Christian0.7450.7523120.333210.10%0.00%
2Akron-0.9179-1.11874440.50%0.00%
3Alabama-2.1211-2.922010550.5532248.40%15.40%
4Albany-0.4147-0.31383330.00%0.00%
6American-0.5160-0.41503330.20%0.00%
8Arizona-1.7206-2.52162817110.60711773583.50%36.10%
9Arizona St.-2209-1.92065140.2419.40%1.60%
10Arkansas4.3113.516181170.611763217.40%1.80%
11Arkansas Pine Bluff76781110.00%0.00%
12Auburn0.6531.43011740.63644111135.50%6.30%

CREATE TABLE team_results (
  "team_id" BIGINT,
  "team" VARCHAR,
  "pake" DOUBLE,
  "pake_rank" BIGINT,
  "pase" DOUBLE,
  "pase_rank" BIGINT,
  "games" BIGINT,
  "w" BIGINT,
  "l" BIGINT,
  "win" DOUBLE,
  "r64" BIGINT,
  "r32" BIGINT,
  "s16" BIGINT,
  "e8" BIGINT,
  "f4" BIGINT,
  "f2" BIGINT,
  "champ" BIGINT,
  "top2" BIGINT,
  "f4_234f67" VARCHAR,
  "champ_337e2f" VARCHAR
);

Share link

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