Baselight

College Basketball Big 12 Conference (1996 - 2021)

Yearly College Basketball Big 12 Conference Data (1996 - 2021)

@kaggle.mattop_college_basketball_big_12_conference_1996_2021

Big12basketball
@kaggle.mattop_college_basketball_big_12_conference_1996_2021.big12basketball

  • 48.72 KB
  • 290 rows
  • 37 columns
id

Id

year

Year

rank

Rank

school

School

games

Games

wins

Wins

losses

Losses

win_percentage

Win Percentage

conference_wins

Conference Wins

conference_losses

Conference Losses

home_wins

Home Wins

home_losses

Home Losses

away_wins

Away Wins

away_losses

Away Losses

offensive_rating

Offensive Rating

defensive_rating

Defensive Rating

net_rating

Net Rating

field_goals

Field Goals

field_goal_attempts

Field Goal Attempts

field_goal_percentage

Field Goal Percentage

n_3_pointers

3 Pointers

n_3_pointer_attempts

3 Pointer Attempts

n_3_pointer_percentage

3 Pointer Percentage

effective_field_goal_percentage

Effective Field Goal Percentage

free_throws

Free Throws

free_throw_attempts

Free Throw Attempts

free_throw_percentage

Free Throw Percentage

offensive_rebounds

Offensive Rebounds

total_rebounds

Total Rebounds

assists

Assists

steals

Steals

blocks

Blocks

turnovers

Turnovers

personal_fouls

Personal Fouls

points

Points

opponent_points

Opponent Points

simple_rating

Simple Rating

120211Baylor342770.79414415283111.592.718.828.361.30.4628.123.50.3430.52812.417.80.69712.937.215.98.83.412.416.17764.121.73
220212Kansas403460.8514416164111.595.815.628.659.80.4787.219.80.3610.53813.919.40.7171137.915.36.34.312.115.978.267.322.28
320213Texas Tech3727100.73126183710689.216.826.255.50.4726.118.90.3210.52613.619.50.69810.636.413.783.513.516.272.160.620.08
420214Texas3422120.64710816347105.993.412.524.555.50.4416.6200.330.50113.217.70.74610.433.313.27.73.411.617.968.860.617.01
520215Oklahoma State3015150.58101063896.993.13.825.157.90.4345.418.20.2950.4812.719.10.66711.637.112.78.55.415.117.468.465.713.28
620216TCU3421130.61881012446101.195.85.325.457.70.4395.518.30.3020.48712.218.10.674133913.66.44.114.515.568.564.913.72
720217Iowa State3522130.6297111454696.992.44.524.356.30.4316.721.20.3150.49110.415.20.6839.632.414.78.53.113.818.365.662.512.38
820218Oklahoma3519160.5437111263810397625.353.10.4767.621.90.3470.54810.914.60.7477.731.8147.41.914.715.569.16514.12
920219Kansas State3114170.4526129757101.599.22.324.157.40.428.424.30.3460.49412.3170.7268.933.212.57.31.611.517.16967.510.61
10202110West Virginia3316170.48541412511099.9100.7-0.823.657.10.4136.319.20.3280.46814.920.60.72410.832.210.57.84.512.417.468.56910.23

CREATE TABLE big12basketball (
  "id" BIGINT,
  "year" BIGINT,
  "rank" BIGINT,
  "school" VARCHAR,
  "games" BIGINT,
  "wins" BIGINT,
  "losses" BIGINT,
  "win_percentage" DOUBLE,
  "conference_wins" BIGINT,
  "conference_losses" BIGINT,
  "home_wins" DOUBLE,
  "home_losses" DOUBLE,
  "away_wins" DOUBLE,
  "away_losses" DOUBLE,
  "offensive_rating" DOUBLE,
  "defensive_rating" DOUBLE,
  "net_rating" DOUBLE,
  "field_goals" DOUBLE,
  "field_goal_attempts" DOUBLE,
  "field_goal_percentage" DOUBLE,
  "n_3_pointers" DOUBLE,
  "n_3_pointer_attempts" DOUBLE,
  "n_3_pointer_percentage" DOUBLE,
  "effective_field_goal_percentage" DOUBLE,
  "free_throws" DOUBLE,
  "free_throw_attempts" DOUBLE,
  "free_throw_percentage" DOUBLE,
  "offensive_rebounds" DOUBLE,
  "total_rebounds" DOUBLE,
  "assists" DOUBLE,
  "steals" DOUBLE,
  "blocks" DOUBLE,
  "turnovers" DOUBLE,
  "personal_fouls" DOUBLE,
  "points" DOUBLE,
  "opponent_points" DOUBLE,
  "simple_rating" DOUBLE
);

Share link

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