Baselight

College Basketball Big East (1979 - 2021)

Yearly College Basketball Big East Conference Data (1979 - 2021)

@kaggle.mattop_college_basketball_big_east_1979_2021

Bigeastncaabasketball
@kaggle.mattop_college_basketball_big_east_1979_2021.bigeastncaabasketball

  • 57.43 KB
  • 496 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

120211Villanova383080.78916412185112.498.314.124.356.10.4329.3260.3590.51513.916.70.8310.334.811.962.29.914.971.762.719.31
220212Providence332760.81814316172106.498.57.924.556.30.4357.421.40.3440.515.220.80.72810.537.613.253.711.41671.566.213.08
320213UConn3323100.69713614255109.995.91426.761.20.4357.421.10.3520.49614.118.70.75313.840.4145.96.411.816.874.865.316.4
420214Creighton3523120.65712711465100.596.44.125.657.20.4486.721.80.3080.50611.315.30.7389.638.113.35.54.314.113.669.266.411.34
520215Marquette3219130.59411813347102.799.33.326.959.80.458.6250.3440.52111.615.70.7417.834.8167.85.212.417.47471.611.36
620216Seton Hall3221110.65611813365104.396.3825.360.20.427.321.60.3380.48114.118.80.75312.138.510.37.15.412.115.671.966.412.75
720217St. John's (NY)3217150.53181112747106.499.27.330.366.80.4537.321.60.3350.50811.817.40.6771237.818.88.85.511.917.979.674.211.95
820218Xavier3623130.63981116546105.898.8726.558.70.4516.720.90.3220.50914.420.70.69810.337.114.87.54.311.715.474.169.213.23
920219Butler3314190.424614973897.2101.9-4.722.754.50.4166.922.80.3050.4811.516.50.696932.8115.22.41216.763.866.94.45
10202110DePaul3115160.48461411748103.7102.21.626.360.70.4336.620.80.3170.48814.120.30.69311.838.511.46.2512.315.773.372.27.83

CREATE TABLE bigeastncaabasketball (
  "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.