Baselight

Babe Ruth Career Stats

The career batting and pitching statistics for Babe Ruth

@kaggle.jarredpriester_babe_ruth_career_stats

Babe Ruth Batting
@kaggle.jarredpriester_babe_ruth_career_stats.babe_ruth_batting

  • 20.03 KB
  • 22 rows
  • 29 columns
year

Year

age

Age

tm

Tm

lg

Lg

g

G

pa

PA

ab

AB

r

R

h

H

n_2b

2B

n_3b

3B

hr

HR

rbi

RBI

sb

SB

cs

CS

bb

BB

so

SO

ba

BA

obp

OBP

slg

SLG

ops

OPS

ops_342c99

OPS+

tb

TB

gdp

GDP

hbp

HBP

sh

SH

sf

SF

ibb

IBB

unnamed_28

Unnamed: 28

191419BOSAL5101012140.20.20.30.5503
191520BOSAL421039216291014209230.3150.3760.5760.952189532
191621BOSAL6715213618375331610230.2720.3220.4190.741122574
191722BOSAL5214212314406321412180.3250.3850.4720.857162587
191823BOSAL95382317509526111161658580.30.4110.5550.96619217623
191924BOSAL1305434321031393412291137101580.3220.4560.6571.11421728463
192025NYYAL142617458158172369541351414150800.3760.5320.8471.37925538835
192126NYYAL1526935401772044416591681713145810.3780.5120.8461.35923945744
192227NYYAL1104964069412824835962584800.3150.4340.6721.10618227314
192328NYYAL1526995221512054513411301721170930.3930.5450.7641.30923939943

CREATE TABLE babe_ruth_batting (
  "year" BIGINT,
  "age" BIGINT,
  "tm" VARCHAR,
  "lg" VARCHAR,
  "g" BIGINT,
  "pa" BIGINT,
  "ab" BIGINT,
  "r" BIGINT,
  "h" BIGINT,
  "n_2b" BIGINT,
  "n_3b" BIGINT,
  "hr" BIGINT,
  "rbi" BIGINT,
  "sb" BIGINT,
  "cs" DOUBLE,
  "bb" BIGINT,
  "so" BIGINT,
  "ba" DOUBLE,
  "obp" DOUBLE,
  "slg" DOUBLE,
  "ops" DOUBLE,
  "ops_342c99" BIGINT,
  "tb" BIGINT,
  "gdp" DOUBLE,
  "hbp" BIGINT,
  "sh" BIGINT,
  "sf" VARCHAR,
  "ibb" DOUBLE,
  "unnamed_28" VARCHAR
);

Share link

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