Baselight

The History Of Baseball

A complete history of major league baseball stats from 1871 to 2015

@kaggle.seanlahman_the_history_of_baseball

Batting Postseason
@kaggle.seanlahman_the_history_of_baseball.batting_postseason

  • 131.98 KB
  • 11690 rows
  • 22 columns
year

Year

round

Round

player_id

Player Id

team_id

Team Id

league_id

League Id

g

G

ab

Ab

r

R

h

H

double

Double

triple

Triple

hr

Hr

rbi

Rbi

sb

Sb

cs

Cs

bb

Bb

so

So

ibb

Ibb

hbp

Hbp

sh

Sh

sf

Sf

g_idp

G Idp

1884WSbecanbu01NY4AA121
1884WSbradyst01NY4AA31011
1884WSesterdu01NY4AA3103113
1884WSforstto01NY4AA131
1884WSkeefeti01NY4AA2514
1884WSkenneed01NY4AA372
1884WSnelsoca01NY4AA31011
1884WSorrda01NY4AA391
1884WSreipsch01NY4AA2511
1884WSrosemch01NY4AA391311

CREATE TABLE batting_postseason (
  "year" BIGINT,
  "round" VARCHAR,
  "player_id" VARCHAR,
  "team_id" VARCHAR,
  "league_id" VARCHAR,
  "g" BIGINT,
  "ab" BIGINT,
  "r" BIGINT,
  "h" BIGINT,
  "double" BIGINT,
  "triple" BIGINT,
  "hr" BIGINT,
  "rbi" BIGINT,
  "sb" BIGINT,
  "cs" DOUBLE,
  "bb" BIGINT,
  "so" BIGINT,
  "ibb" DOUBLE,
  "hbp" DOUBLE,
  "sh" DOUBLE,
  "sf" DOUBLE,
  "g_idp" DOUBLE
);

Share link

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