MLB Ballparks
Physical & Environmental Dimensions of Major League Baseball Stadiums
@kaggle.paulrjohnson_mlb_ballparks
Physical & Environmental Dimensions of Major League Baseball Stadiums
@kaggle.paulrjohnson_mlb_ballparks
A dataset detailing the physical and environmental dimensions of Major League Baseball (MLB) ballparks (for the 2022 season). These ballpark dimensions are relevant when analysing or predicting outcomes, particularly hitting.
This dataset was put together as supplementary data for the Expected Home Runs Kaggle competition.
Data sourced from the Baseball Savant Park Factors page.
CREATE TABLE ballparks (
"team_name" VARCHAR,
"ballpark" VARCHAR,
"left_field" BIGINT,
"center_field" BIGINT,
"right_field" BIGINT,
"min_wall_height" DOUBLE,
"max_wall_height" BIGINT,
"hr_park_effects" BIGINT,
"extra_distance" DOUBLE,
"avg_temp" DOUBLE,
"elevation" BIGINT,
"roof" DOUBLE,
"daytime" DOUBLE
);Anyone who has the link will be able to view this.