Baselight

The History Of Baseball

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

@kaggle.seanlahman_the_history_of_baseball

Batting
@kaggle.seanlahman_the_history_of_baseball.batting

  • 1.68 MB
  • 101332 rows
  • 22 columns
player_id

Player Id

year

Year

stint

Stint

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

abercda0118711TROnan14
addybo0118711RC1nan251183032613814
allisar0118711CL1nan29137284045193125
allisdo0118711WS3nan271332844102227112
ansonca0118711RC1nan251202939113166221
armstbo0118711FW1nan124991121511
barkeal0118711RC1nan14121
barnero0118711BS1nan31157666310934116131
barrebi0118711FW1nan151111
barrofr0118711BS1nan1886131321111

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

Share link

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