MLB Baseball Umpire Scorecards (2015 - 2022)
Advanced Statistics of MLB Baseball Umpire Performance (2015 - 2022)
@kaggle.mattop_mlb_baseball_umpire_scorecards_2015_2022
Advanced Statistics of MLB Baseball Umpire Performance (2015 - 2022)
@kaggle.mattop_mlb_baseball_umpire_scorecards_2015_2022
The dataset contains umpire scorecard data from the 2015 - 2022 MLB seasons.
In baseball, the umpire is the person tasked with officiating the game, including beginning and ending the game, enforcing the rules of the game and the grounds, making judgment calls on plays, and handling the disciplinary actions.
The data was collected fromĀ https://umpscorecards.us/ then cleaned for data analysis.
CREATE TABLE mlb_umpire_scorecard (
"id" BIGINT,
"date" TIMESTAMP,
"umpire" VARCHAR,
"home" VARCHAR,
"away" VARCHAR,
"home_team_runs" BIGINT,
"away_team_runs" BIGINT,
"pitches_called" VARCHAR,
"incorrect_calls" VARCHAR,
"expected_incorrect_calls" VARCHAR,
"correct_calls" VARCHAR,
"expected_correct_calls" VARCHAR,
"correct_calls_above_expected" VARCHAR,
"accuracy" VARCHAR,
"expected_accuracy" VARCHAR,
"accuracy_above_expected" VARCHAR,
"consistency" VARCHAR,
"favor_home" VARCHAR,
"total_run_impact" VARCHAR
);Anyone who has the link will be able to view this.