MLB Batting Stats By Game 1901-2021
Game-by-game batting stats for all players with a PA in the regular season.
@kaggle.darinhawley_mlb_batting_stats_by_game_19012021
Game-by-game batting stats for all players with a PA in the regular season.
@kaggle.darinhawley_mlb_batting_stats_by_game_19012021
CREATE TABLE mlbbatting1901_2021 (
"id" VARCHAR,
"player" VARCHAR,
"date" VARCHAR,
"tm" VARCHAR,
"opp" VARCHAR,
"rslt" VARCHAR,
"pa" BIGINT,
"ab" BIGINT,
"r" BIGINT,
"h" BIGINT,
"n_2b" BIGINT,
"n_3b" BIGINT,
"hr" BIGINT,
"rbi" DOUBLE,
"bb" BIGINT,
"ibb" DOUBLE,
"so" BIGINT,
"hbp" BIGINT,
"sh" BIGINT,
"sf" DOUBLE,
"roe" DOUBLE,
"gdp" DOUBLE,
"sb" BIGINT,
"cs" DOUBLE,
"wpa" DOUBLE,
"re24" DOUBLE,
"ali" DOUBLE,
"bop" BIGINT,
"pos_summary" VARCHAR,
"dfs_dk" DOUBLE,
"dfs_fd" DOUBLE
);
Anyone who has the link will be able to view this.