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 Batting
@kaggle.mattop_atlanta_braves_batting_and_pitching_1966_2023.atl_batting

  • 102.17 KB
  • 2477 rows
  • 31 columns
rank

Rank

year

Year

position

Position

name

Name

age

Age

games

Games

plate_appearances

Plate Appearances

at_bats

At Bats

runs

Runs

hits

Hits

doubles

Doubles

triples

Triples

home_runs

Home Runs

runs_batted_in

Runs Batted In

stolen_bases

Stolen Bases

caught_stealing

Caught Stealing

base_on_balls

Base On Balls

strikeouts

Strikeouts

batting_average

Batting Average

on_base_percentage

On Base Percentage

slugging_percentage

Slugging Percentage

on_base_plus_slugging_percentage

On Base Plus Slugging Percentage

on_base_plus_slugging_percentage_plus

On Base Plus Slugging Percentage Plus

total_bases

Total Bases

double_plays_grounded_into

Double Plays Grounded Into

times_hit_by_pitch

Times Hit By Pitch

sacrifice_hits

Sacrifice Hits

sacrifice_flies

Sacrifice Flies

intentional_bases_on_balls

Intentional Bases On Balls

dominant_hand

Dominant Hand

switch_hitter

Switch Hitter

12023CSean Murphy28108438370659321216849980.2510.3650.4780.84412517718181RightNo
220231BMatt Olson291627206081271722735413911041670.2830.3890.6040.99316236713448LeftNo
320232BOzzie Albies261486605969616730533109131461070.280.3360.5130.8491243069882RightYes
42023SSOrlando Arcia28139533488661292517651391020.2640.3210.420.741982051433RightNo
520233BAustin Riley26159715636117179323379731591720.2810.3450.5160.861128328189114RightNo
62023LFEddie Rosario3114251647864122243217434341220.2550.3050.450.755100215131121LeftNo
72023CFMichael Harris II22138539505761483331857204251010.2930.3310.4770.80811424185131LeftNo
82023RFRonald Acuna Jr.2515973564314921735441106731480840.3370.4160.5961.01216838315933RightNo
92023DHMarcell Ozuna321445925308414529140100571340.2740.3460.5580.9051382969321RightNo
102023CTravis d'Arnaud3474292267316013113921670.2250.2880.3970.68582106631RightNo

CREATE TABLE atl_batting (
  "rank" BIGINT,
  "year" BIGINT,
  "position" VARCHAR,
  "name" VARCHAR,
  "age" BIGINT,
  "games" BIGINT,
  "plate_appearances" BIGINT,
  "at_bats" BIGINT,
  "runs" BIGINT,
  "hits" BIGINT,
  "doubles" BIGINT,
  "triples" BIGINT,
  "home_runs" BIGINT,
  "runs_batted_in" BIGINT,
  "stolen_bases" BIGINT,
  "caught_stealing" BIGINT,
  "base_on_balls" BIGINT,
  "strikeouts" BIGINT,
  "batting_average" DOUBLE,
  "on_base_percentage" DOUBLE,
  "slugging_percentage" DOUBLE,
  "on_base_plus_slugging_percentage" DOUBLE,
  "on_base_plus_slugging_percentage_plus" BIGINT,
  "total_bases" BIGINT,
  "double_plays_grounded_into" BIGINT,
  "times_hit_by_pitch" BIGINT,
  "sacrifice_hits" BIGINT,
  "sacrifice_flies" BIGINT,
  "intentional_bases_on_balls" BIGINT,
  "dominant_hand" VARCHAR,
  "switch_hitter" VARCHAR
);

Share link

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