Hank Aaron Career Stats
The career batting statistics for Hank Aaron
@kaggle.jarredpriester_hank_aaron_career_stats
The career batting statistics for Hank Aaron
@kaggle.jarredpriester_hank_aaron_career_stats
This dataset consist of the batting statistics of Hank Aaron.
Hank Aaron ended his career with the most career homeruns with 755, the most RBIs, and the most total bases.
Column description of the batting stats
Year: year the season was played in
Age: age on June 30th of that season
Tm: team he played for
Lg: league played in
G: games played
PA: plate appearances
AB: at bats
R: runs scored
H: hits
2B: doubles
3B: triples
HR: homeruns
RBI: run batted in
SB: stolen bases
CS: caught stealing
BB: walks
SO: strike outs
BA: batting average
OBP: on base percentage
SLG: slugging percentage
OPS: on base percentage + slugging percentage
OPS+: ops adjusted for ballparks
TB: total bases
GDP: double plays grounded into
HBP: times hit by pitch
SH: sacrifice hits
SF: sacrifice flies
IBB: intentional base on balls
CREATE TABLE hank_aaron_batting (
"year" BIGINT,
"age" BIGINT,
"tm" VARCHAR,
"lg" VARCHAR,
"g" BIGINT,
"pa" BIGINT,
"ab" BIGINT,
"r" BIGINT,
"h" BIGINT,
"n_2b" BIGINT -- 2B,
"n_3b" BIGINT -- 3B,
"hr" BIGINT,
"rbi" BIGINT,
"sb" BIGINT,
"cs" BIGINT,
"bb" BIGINT,
"so" BIGINT,
"ba" DOUBLE,
"obp" DOUBLE,
"slg" DOUBLE,
"ops" DOUBLE,
"ops_342c99" BIGINT -- OPS+,
"tb" BIGINT,
"gdp" BIGINT,
"hbp" BIGINT,
"sh" BIGINT,
"sf" BIGINT,
"ibb" BIGINT,
"unnamed_28" VARCHAR -- Unnamed: 28
);Anyone who has the link will be able to view this.