Baselight

Atlanta Braves Batting & Pitching (1966-2023)

MLB Baseball Atlanta Braves Batting & Pitching Data (1966-2023)

@kaggle.mattop_atlanta_braves_batting_and_pitching_1966_2023

Atl Pitching
@kaggle.mattop_atlanta_braves_batting_and_pitching_1966_2023.atl_pitching

  • 86.65 KB
  • 1228 rows
  • 37 columns
rank

Rank

year

Year

position

Position

name

Name

age

Age

wins

Wins

losses

Losses

winning_percentage

Winning Percentage

earned_run_average

Earned Run Average

games_played

Games Played

games_started

Games Started

games_finished

Games Finished

complete_games

Complete Games

shutouts

Shutouts

saves

Saves

innings_pitched

Innings Pitched

hits_allowed

Hits Allowed

runs_allowed

Runs Allowed

earned_runs

Earned Runs

home_runs_allowed

Home Runs Allowed

walks_allowed

Walks Allowed

intentional_walks_allowed

Intentional Walks Allowed

strikeouts

Strikeouts

hit_by_pitch

Hit By Pitch

balks

Balks

wild_pitches

Wild Pitches

batters_faced

Batters Faced

adjusted_earned_run_average

Adjusted Earned Run Average

fielding_independent_pitching

Fielding Independent Pitching

walks_hits_per_inning_pitched

Walks Hits Per Inning Pitched

hits_per_nine_innings

Hits Per Nine Innings

home_runs_per_nine_innings

Home Runs Per Nine Innings

walks_per_nine_innings

Walks Per Nine Innings

strikeouts_per_nine_innings

Strikeouts Per Nine Innings

strikeout_walk_ratio

Strikeout Walk Ratio

dominant_hand

Dominant Hand

switch_hitter

Switch Hitter

12023SPSpencer Strider242050.83.863232186.21468580225812819267631152.851.09371.12.813.54.84RightNo
22023SPBryce Elder241240.753.813131174.21607974196312881117321164.421.2778.213.26.62.03RightNo
32023SPCharlie Morton3914120.5383.643030163.115070661483218312247161223.871.4278.30.84.610.12.2RightNo
42023SPMax Fried29810.8892.5514141177.270242271880233111743.141.1338.10.82.19.34.44LeftNo
52023SPJared Shuster24430.5715.81111152.25334347263013230775.381.59.11.24.45.11.15LeftNo
62023CLRaisel Iglesias33540.5562.7558503355.25123177152682311623.261.1868.21.12.4114.53RightNo
72023RPMichael Tonkin33730.74.28451118064413813231752123251044.431.0887.21.52.68.43.26RightNo
82023RPA.J. Minter29360.3333.7670191064.2562827621282112601182.91.1917.80.82.911.43.9LeftNo
92023RPKirby Yates36720.7783.286116560.13522229371805152541364.631.1935.21.35.511.92.16RightNo
102023RPJoe Jiménez2833.04591656.15122199147322381473.591.1548.11.42.211.75.21RightNo

CREATE TABLE atl_pitching (
  "rank" BIGINT,
  "year" BIGINT,
  "position" VARCHAR,
  "name" VARCHAR,
  "age" BIGINT,
  "wins" BIGINT,
  "losses" BIGINT,
  "winning_percentage" DOUBLE,
  "earned_run_average" DOUBLE,
  "games_played" BIGINT,
  "games_started" BIGINT,
  "games_finished" BIGINT,
  "complete_games" BIGINT,
  "shutouts" BIGINT,
  "saves" BIGINT,
  "innings_pitched" DOUBLE,
  "hits_allowed" BIGINT,
  "runs_allowed" BIGINT,
  "earned_runs" BIGINT,
  "home_runs_allowed" BIGINT,
  "walks_allowed" BIGINT,
  "intentional_walks_allowed" BIGINT,
  "strikeouts" BIGINT,
  "hit_by_pitch" BIGINT,
  "balks" BIGINT,
  "wild_pitches" BIGINT,
  "batters_faced" BIGINT,
  "adjusted_earned_run_average" BIGINT,
  "fielding_independent_pitching" DOUBLE,
  "walks_hits_per_inning_pitched" DOUBLE,
  "hits_per_nine_innings" DOUBLE,
  "home_runs_per_nine_innings" DOUBLE,
  "walks_per_nine_innings" DOUBLE,
  "strikeouts_per_nine_innings" DOUBLE,
  "strikeout_walk_ratio" DOUBLE,
  "dominant_hand" VARCHAR,
  "switch_hitter" VARCHAR
);

Share link

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