Baselight

MLB Top 100 Hitters 2004-2024

Measuring the statistics that have the most influence on the awards of the top 1

@kaggle.yonathanmercedeyonn_mlb_top_100_2004_2024

Mlbtop100
@kaggle.yonathanmercedeyonn_mlb_top_100_2004_2024.mlbtop100

  • 105.46 KB
  • 2100 rows
  • 37 columns
year

Year

player

Player

age

Age

team

Team

league

League

war

WAR

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

avg

AVG

obp

OBP

slg

SLG

ops

OPS

ops_342c99

OPS+

roba

ROBA

rbat

Rbat+

tb

TB

gidp

GIDP

hbp

HBP

sh

SH

sf

SF

ibb

IBB

all_star_game

All Star Game

mvp

MVP

silver_slugger

Silver Slugger

gold_globe

Gold Globe

roy

ROY

2024Aaron Judge32NYYAL10.815870455912218036158144101331710.3220.4580.7011.1592230.4842233922292201111
2024Shohei Ohtani29LADNL9.215973163613419738754130594811620.310.390.6461.0361900.449190411765101111
2023Ronald Acuña Jr.25ATLNL8.215973564314921735441106731480840.3370.4160.5961.0121710.444173383159331111
2012Mike Trout20LAAAL10.51396395591291822783083495671390.3260.3990.5640.9631680.431733157674111
2023Shohei Ohtani28LAAAL61355994971021512684495206911430.3040.4120.6541.0661850.435180325933211111
2022Aaron Judge30NYYAL10.515769657013317728621311631111750.3110.4250.6861.1112100.4632083911465191111
2018Mike Trout26LAAAL9.914060847110114724439792421221240.3120.460.6281.0881980.455194296510425111
2022Paul Goldschmidt34STLNL7.715165156110617841351157791410.3170.4040.5780.9811770.42718132475411111
2021Rafael Devers24BOSAL3.71566645911011653713811355621430.2790.3520.5380.891340.373133318137471111
2004Adrian Beltré25LADNL9.615665759810420032481217253870.3340.3880.6291.0171630.435171376152491

CREATE TABLE mlbtop100 (
  "year" BIGINT,
  "player" VARCHAR,
  "age" BIGINT,
  "team" VARCHAR,
  "league" VARCHAR,
  "war" DOUBLE,
  "g" BIGINT,
  "pa" BIGINT,
  "ab" BIGINT,
  "r" BIGINT,
  "h" BIGINT,
  "n_2b" BIGINT,
  "n_3b" BIGINT,
  "hr" BIGINT,
  "rbi" BIGINT,
  "sb" BIGINT,
  "cs" BIGINT,
  "bb" BIGINT,
  "so" BIGINT,
  "avg" DOUBLE,
  "obp" DOUBLE,
  "slg" DOUBLE,
  "ops" DOUBLE,
  "ops_342c99" BIGINT,
  "roba" DOUBLE,
  "rbat" BIGINT,
  "tb" BIGINT,
  "gidp" BIGINT,
  "hbp" BIGINT,
  "sh" BIGINT,
  "sf" BIGINT,
  "ibb" BIGINT,
  "all_star_game" BIGINT,
  "mvp" BIGINT,
  "silver_slugger" BIGINT,
  "gold_globe" BIGINT,
  "roy" BIGINT
);

Share link

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