Package 'Sabermetrics'

Total Page:16

File Type:pdf, Size:1020Kb

Package 'Sabermetrics' Package ‘Sabermetrics’ January 26, 2016 Type Package Title Sabermetrics Functions for Baseball Analytics Version 2.0 Date 2016-01-25 Author Peter Xenopoulos, Fernando Crema <www.peterxeno.com> Maintainer Peter Xenopoulos <[email protected]> Description A collection of baseball analytics functions for sabermetrics purposes. Among these functions include popular metrics such as FIP, wOBA, and runs created and other advanced metrics. License GPL-3 Imports XML NeedsCompilation no Repository CRAN Date/Publication 2016-01-26 14:14:00 R topics documented: sabermetrics-package . .2 babip . .3 dice .............................................4 era..............................................5 eraminus . .6 fip..............................................7 fipminus . .8 fp .............................................. 10 handedparkfactors . 11 iso.............................................. 12 lgwSB . 13 linearWeights . 14 log5............................................. 16 obp ............................................. 17 ops.............................................. 18 1 2 sabermetrics-package opsplus . 19 parkfactors . 20 pyth............................................. 22 raweqa . 23 secavg . 24 slg.............................................. 25 whip............................................. 26 woba............................................. 27 wraa............................................. 29 wrc ............................................. 30 wrcplus . 31 wsb ............................................. 33 xfip ............................................. 34 xfipminus . 35 Index 37 sabermetrics-package Sabermetrics Functions For Baseball Analytics Description A collection of baseball analytics functions for sabermetrics purposes. Among these functions include popular metrics such as wOBA, runs created functions as well as enhanced pitching metrics. Details Package: Sabermetrics Type: Package Version: 2.0 Date: 2016-01-25 License: GPL-3 Author(s) Peter Xenopoulos, Fernando Crema References Wikipedia: http://en.wikipedia.org/wiki/Sabermetrics#Examples | Reddit: http://www.reddit.com/r/Sabermetrics | Peter Xenopoulos Website: www.peterxeno.com babip 3 babip Batting Average on Balls in Play (BABIP) Description BABIP is a statistic which measures how often a non-home run batted ball falls for a hit. Usage babip(h, hr, ab, k, sf) Arguments h Hits hr Home Runs ab At Bats k Strikeouts sf Sacrifice Flies Value Returns a numerical value equal to (h-hr)/(ab-hr-k-sf) Author(s) Fernando Crema, Peter Xenopoulos References http://www.fangraphs.com/library/pitching/babip/ See Also obp,ops Examples ## Let's Calculate Mike Trout's BABIP for the 2014 season ## He had 173 Hits, 36 HR's, 602 AB's, 184 K's, and 10 SF's ## We should get .368 as our output babip(173,36,602,184,10) ## The function is currently defined as function (h, hr, ab, k, sf) { babip <- (h-hr)/(ab-hr-k-sf) return(babip) } 4 dice dice Defense-Independent Component ERA Description DICE represents a way to measure a pitcher’s performance on the ERA scale using only events a pitcher can "control" Usage dice(hr, bb, hbp, k, ip) Arguments hr Home Runs bb Walks hbp Hit By Pitches k Strikeouts ip Innings Pitched Details DICE uses the typical ERA scale. Value Returns a value equal to (13*hr+3*bb+3*hbp-2*k)/ip + 3.0 Note Innings Pitched (IP) is commonly reported with .1 indicating 1/3 of an inning and .2 indicating 2/3 of an inning. In order for this function to be accurate, please change the decimal to .333 for 1/3 of an inning and .666 for 2/3 of an inning. Author(s) Peter Xenopoulos References https://en.wikipedia.org/wiki/Defense-Independent_Component_ERA See Also era,fip,xfip,whip era 5 Examples ## The function is currently defined as function (hr, bb, hbp, k, ip) { dice = (13 * hr + 3 * bb + 3 * hbp - 2 * k)/ip + 3 return(dice) } era Earned-Run Average (ERA) Description ERA is a basic metric used to describe a pitchers ability to prevent runs. Usage era(er, ip) Arguments er Earned Runs ip Innings Pitched Details ERA is not a perfect indicator of pitcher skill. It is highly defense dependent. Value Returns a numerical value equal to (9*er)/ip Note Innings Pitched (IP) is commonly reported with .1 indicating 1/3 of an inning and .2 indicating 2/3 of an inning. In order for this function to be accurate, please change the decimal to .333 for 1/3 of an inning and .666 for 2/3 of an inning. Author(s) Fernando Crema, Peter Xenopoulos References http://www.fangraphs.com/library/pitching/era/ 6 eraminus See Also whip,fip,xfip Examples ## Let's calculate Clayton Kershaw's ERA for the 2014 Season ## He had 39 ER's and 198.333 IP ## We should get an ERA = to 1.77 era(39,198.333) ## The function is currently defined as function (er, ip) { era <- (9 * er)/ip return(era) } eraminus ERA- Description ERA- is a park-adjusted version of ERA Usage eraminus(ERA, ParkFactor, LeagueERA) Arguments ERA Player ERA ParkFactor Park Factor LeagueERA League Average ERA Details League Average is set to 100 each season. Each point below or above 100 is one percentage point better or worse than league average. Value Returns a value equal to (ERA+(ERA-(ERA*(ParkFactor/100))))/(LeagueERA)*100 Note Park Factors can be found in the references section fip 7 Author(s) Peter Xenopoulos References http://www.fangraphs.com/library/pitching/era-fip-xfip/ http://www.fangraphs.com/guts.aspx?type=pf&teamid=0&season=2014 See Also era,fipminus,xfipminus Examples ## The function is currently defined as function (ERA, ParkFactor, LeagueERA) { eraminus <- (ERA + (ERA - (ERA * (ParkFactor/100))))/(LeagueERA) * 100 return(eraminus) } fip Field Independent Pitching (FIP) Description FIP is a statistic that measure a pitcher’s performance independent of defense. FIP uses outcomes that do not take into account a team’s defense. Usage fip(HR, BB, HBP, K, IP, year) Arguments HR Homeruns given up BB Walks given up HBP Hit by pitches given up K Strikeouts IP Innings Pitched year Season Details While FIP is not a complete representation of a pitcher’s performance, it is regarded as a better representation of performance than ERA. 8 fipminus Value Returns a numerical vector equal to ((13*HR)+(3*(BB+HBP))-(2*K))/IP + constant Constant = Season FIP Constant Note Innings Pitched (IP) is commonly reported with .1 indicating 1/3 of an inning and .2 indicating 2/3 of an inning. In order for this function to be accurate, please change the decimal to .333 for 1/3 of an inning and .666 for 2/3 of an inning. Author(s) Peter Xenopoulos References http://www.fangraphs.com/library/pitching/fip/ See Also era, whip, xfip, fipminus Examples ## Let's calculate Clayton Kershaw's 2014 FIP ## He had 9 HR's, 31 BB's, 2 HBP's, 239 K's, and 198.333 IP's ## We should get 1.81 as our output fip(9,31,2,239,198.333,2014) ## The function is currently defined as function (HR, BB, HBP, K, IP, year) { constant <- weights$cFIP[which(weights$Season == year)] fip <- ((13 * HR) + (3 * (BB + HBP)) - (2 * K))/IP + constant return(fip) } fipminus FIP- Description FIP- is a park-adjusted version of FIP Usage fipminus(FIP, ParkFactor, LeagueFIP) fipminus 9 Arguments FIP Player FIP ParkFactor Park Factor LeagueFIP League Average FIP Details League Average is set to 100 each season. Each point below or above 100 is one percentage point better or worse than league average. Value Returns a value equal to (FIP+(FIP-(FIP*(ParkFactor/100))))/(LeagueFIP)*100 Note Park Factors can be found in the references section Author(s) Peter Xenopoulos References http://www.fangraphs.com/library/pitching/era-fip-xfip/ http://www.fangraphs.com/guts.aspx?type=pf&teamid=0&season=2014 See Also fip,eraminus,xfipminus Examples ## The function is currently defined as function (FIP, ParkFactor, LeagueFIP) { fipminus <- (FIP + (FIP - (FIP * (ParkFactor/100))))/(LeagueFIP) * 100 return(fipminus) } 10 fp fp Fielding Percentage Description A measure that reflects the percentage of times a player successfully handles a batted or thrown ball. Usage fp(po, a, e) Arguments po Putouts a Assists e Errors Details Fielding percentage is not a particularly sought after defensive metric, especially with the advent of more comprehensive metrics such as UZR and DRS. Value Returns a value equal to (po+a)/(po+a+e) Note Fielding percentage is misleading in the fact that it does not account for a player’s range – that is, if a player that cannot get to a ball gives up a hit instead of having an opportunity to make an out or error. Author(s) Fernando Crema, Peter Xenopoulos References https://en.wikipedia.org/wiki/Fielding_percentage handedparkfactors 11 Examples ## Let's calculate Mike Trout's fielding percentage for 2014 ## He had PO = 383, A = 4, E = 3 ## We should get an output of .992 fp(383,4,3) ## The function is currently defined as function (po, a, e) { fp <- (po + a)/(po + a + e) return(fp) } handedparkfactors Park Factors with Handedness Description Returns hitting park factors based on handedness Usage handedparkfactors(year, team) Arguments year Season team Team Details 0 = All Teams 1 = Los Angeles Angels 2 = Orioles 3 = Boston Red Sox 4 = Chicago White Sox 5 = Cleveland Indians 6 = Detroit Tigers 7 = Kansas City Royals 8 = Minnesota Twins 9 = New York Yankees 10 = Oakland Athletics 11 = Seattle Mariners 12 = Tampa Bay Rays 13 = Texas Rangers 14 = Toronto Blue Jays 15 = Arizona Diamondbacks 12 iso 16 = Atlanta Braves 17 = Chicago Cubs 18 = Cincinnati Reds 19 = Colorado Rockies 20 = Florida Marlins 21 = Houston Astros 22 = Los Angeles Dodgers 23 = Milwaukee Brewers 24 = Washington Nationals 25 = New
Recommended publications
  • NCAA Division I Baseball Records
    Division I Baseball Records Individual Records .................................................................. 2 Individual Leaders .................................................................. 4 Annual Individual Champions .......................................... 14 Team Records ........................................................................... 22 Team Leaders ............................................................................ 24 Annual Team Champions .................................................... 32 All-Time Winningest Teams ................................................ 38 Collegiate Baseball Division I Final Polls ....................... 42 Baseball America Division I Final Polls ........................... 45 USA Today Baseball Weekly/ESPN/ American Baseball Coaches Association Division I Final Polls ............................................................ 46 National Collegiate Baseball Writers Association Division I Final Polls ............................................................ 48 Statistical Trends ...................................................................... 49 No-Hitters and Perfect Games by Year .......................... 50 2 NCAA BASEBALL DIVISION I RECORDS THROUGH 2011 Official NCAA Division I baseball records began Season Career with the 1957 season and are based on informa- 39—Jason Krizan, Dallas Baptist, 2011 (62 games) 346—Jeff Ledbetter, Florida St., 1979-82 (262 games) tion submitted to the NCAA statistics service by Career RUNS BATTED IN PER GAME institutions
    [Show full text]
  • Pitch Quantification Part 1: Between Pitcher Comparisons of QOP with Conventional Statistics" (2016)
    Biola University Digital Commons @ Biola Faculty Articles & Research 2016 Pitch quantification arP t 1: between pitcher comparisons of QOP with conventional statistics Jason Wilson Biola University Follow this and additional works at: https://digitalcommons.biola.edu/faculty-articles Part of the Sports Studies Commons, and the Statistics and Probability Commons Recommended Citation Wilson, Jason, "Pitch quantification Part 1: between pitcher comparisons of QOP with conventional statistics" (2016). Faculty Articles & Research. 393. https://digitalcommons.biola.edu/faculty-articles/393 This Article is brought to you for free and open access by Digital Commons @ Biola. It has been accepted for inclusion in Faculty Articles & Research by an authorized administrator of Digital Commons @ Biola. For more information, please contact [email protected]. | 1 Pitch Quantification Part 1: Between-Pitcher Comparisons of QOP with Conventional Statistics Jason Wilson1,2 1. Introduction The Quality of Pitch (QOP) statistic uses PITCHf/x data to extract the trajectory, location, and speed from a single pitch and is mapped onto a -10 to 10 scale. A value of 5 or higher represents a quality MLB pitch. In March 2015 we presented an LA Dodgers case study at the SABR Analytics conference using QOP that included the following results1: 1. Clayton Kershaw’s no hitter on June 18, 2014 vs. Colorado had an objectively better pitching performance than Josh Beckett’s no hitter on May 25th vs. Philadelphia. 2. Josh Beckett’s 2014 injury followed a statistically significant decline in his QOP that was not accompanied by a significant decline in MPH. These, and the others made in the presentation, are big claims.
    [Show full text]
  • Austin Riley Scouting Report
    Austin Riley Scouting Report Inordinate Kurtis snicker disgustingly. Sexiest Arvy sometimes downs his shote atheistically and pelts so midnight! Nealy voids synecdochically? Florida State football, and the sports world. Like Hilliard Austin Riley is seven former 2020 sleeper whose stock. Elite strikeout rates make Smith a safe plane to learn the majors, which coincided with an uptick in velocity. Cutouts of fans behind home plate, Oregon coach Mario Cristobal, AA did trade Olivera for Alex Woods. His swing and austin riley showed great season but, but i must not. Next up, and veteran CBs like Mike Hughes and Holton Hill had held the starting jobs while the rookies ramped up, clothing posts are no longer allowed. MLB pitchers can usually take advantage of guys with terrible plate approaches. With this improved bat speed and small coverage, chase has fantasy friendly skills if he can force his way courtesy the lineup. Gammons simply mailing it further consideration of austin riley is just about developing power. There is definitely bullpen risk, a former offensive lineman and offensive line coach, by the fans. Here is my snapshot scouting report on each team two National League clubs this writer favors to win the National League. True first basemen don't often draw a lot with love from scouts before the MLB draft remains a. Wait a very successful programs like one hundred rated prospect in the development of young, putting an interesting! Mike Schmitz a video scout for an Express included the. Most scouts but riley is reporting that for the scouting reports and slider and plus fastball and salary relief role of minicamp in a runner has.
    [Show full text]
  • Sabermetrics: the Past, the Present, and the Future
    Sabermetrics: The Past, the Present, and the Future Jim Albert February 12, 2010 Abstract This article provides an overview of sabermetrics, the science of learn- ing about baseball through objective evidence. Statistics and baseball have always had a strong kinship, as many famous players are known by their famous statistical accomplishments such as Joe Dimaggio’s 56-game hitting streak and Ted Williams’ .406 batting average in the 1941 baseball season. We give an overview of how one measures performance in batting, pitching, and fielding. In baseball, the traditional measures are batting av- erage, slugging percentage, and on-base percentage, but modern measures such as OPS (on-base percentage plus slugging percentage) are better in predicting the number of runs a team will score in a game. Pitching is a harder aspect of performance to measure, since traditional measures such as winning percentage and earned run average are confounded by the abilities of the pitcher teammates. Modern measures of pitching such as DIPS (defense independent pitching statistics) are helpful in isolating the contributions of a pitcher that do not involve his teammates. It is also challenging to measure the quality of a player’s fielding ability, since the standard measure of fielding, the fielding percentage, is not helpful in understanding the range of a player in moving towards a batted ball. New measures of fielding have been developed that are useful in measuring a player’s fielding range. Major League Baseball is measuring the game in new ways, and sabermetrics is using this new data to find better mea- sures of player performance.
    [Show full text]
  • The Rules of Scoring
    THE RULES OF SCORING 2011 OFFICIAL BASEBALL RULES WITH CHANGES FROM LITTLE LEAGUE BASEBALL’S “WHAT’S THE SCORE” PUBLICATION INTRODUCTION These “Rules of Scoring” are for the use of those managers and coaches who want to score a Juvenile or Minor League game or wish to know how to correctly score a play or a time at bat during a Juvenile or Minor League game. These “Rules of Scoring” address the recording of individual and team actions, runs batted in, base hits and determining their value, stolen bases and caught stealing, sacrifices, put outs and assists, when to charge or not charge a fielder with an error, wild pitches and passed balls, bases on balls and strikeouts, earned runs, and the winning and losing pitcher. Unlike the Official Baseball Rules used by professional baseball and many amateur leagues, the Little League Playing Rules do not address The Rules of Scoring. However, the Little League Rules of Scoring are similar to the scoring rules used in professional baseball found in Rule 10 of the Official Baseball Rules. Consequently, Rule 10 of the Official Baseball Rules is used as the basis for these Rules of Scoring. However, there are differences (e.g., when to charge or not charge a fielder with an error, runs batted in, winning and losing pitcher). These differences are based on Little League Baseball’s “What’s the Score” booklet. Those additional rules and those modified rules from the “What’s the Score” booklet are in italics. The “What’s the Score” booklet assigns the Official Scorer certain duties under Little League Regulation VI concerning pitching limits which have not implemented by the IAB (see Juvenile League Rule 12.08.08).
    [Show full text]
  • An Offensive Earned-Run Average for Baseball
    OPERATIONS RESEARCH, Vol. 25, No. 5, September-October 1077 An Offensive Earned-Run Average for Baseball THOMAS M. COVER Stanfortl University, Stanford, Californiu CARROLL W. KEILERS Probe fiystenzs, Sunnyvale, California (Received October 1976; accepted March 1977) This paper studies a baseball statistic that plays the role of an offen- sive earned-run average (OERA). The OERA of an individual is simply the number of earned runs per game that he would score if he batted in all nine positions in the line-up. Evaluation can be performed by hand by scoring the sequence of times at bat of a given batter. This statistic has the obvious natural interpretation and tends to evaluate strictly personal rather than team achievement. Some theoretical properties of this statistic are developed, and we give our answer to the question, "Who is the greatest hitter in baseball his- tory?" UPPOSE THAT we are following the history of a certain batter and want some index of his offensive effectiveness. We could, for example, keep track of a running average of the proportion of times he hit safely. This, of course, is the batting average. A more refined estimate ~vouldb e a running average of the total number of bases pcr official time at bat (the slugging average). We might then notice that both averages omit mention of ~valks.P erhaps what is needed is a spectrum of the running average of walks, singles, doublcs, triples, and homcruns per official time at bat. But how are we to convert this six-dimensional variable into a direct comparison of batters? Let us consider another statistic.
    [Show full text]
  • MLB Statistics Feeds
    Updated 07.17.17 MLB Statistics Feeds 2017 Season 1 SPORTRADAR MLB STATISTICS FEEDS Updated 07.17.17 Table of Contents Overview ....................................................................................................................... Error! Bookmark not defined. MLB Statistics Feeds.................................................................................................................................................. 3 Coverage Levels........................................................................................................................................................... 4 League Information ..................................................................................................................................................... 5 Team & Staff Information .......................................................................................................................................... 7 Player Information ....................................................................................................................................................... 9 Venue Information .................................................................................................................................................... 13 Injuries & Transactions Information ................................................................................................................... 16 Game & Series Information ..................................................................................................................................
    [Show full text]
  • Testing the Minimax Theorem in the Field
    Testing the Minimax Theorem in the Field: The Interaction between Pitcher and Batter in Baseball Christopher Rowe Advisor: Professor William Rogerson Abstract John von Neumann’s Minimax Theorem is a central result in game theory, but its practical applicability is questionable. While laboratory studies have often rejected its conclusions, recent field studies have achieved more favorable results. This thesis adds to the growing body of field studies by turning to the game of baseball. Two models are presented and developed, one based on pitch location and the other based on pitch type. Hypotheses are formed from assumptions on each model and then tested with data from Major League Baseball, yielding evidence in favor of the Minimax Theorem. May 2013 MMSS Senior Thesis Northwestern University Table of Contents Acknowledgements 3 Introduction 4 The Minimax Theorem 4 Central Question and Structure 6 Literature Review 6 Laboratory Experiments 7 Field Experiments 8 Summary 10 Models and Assumptions 10 The Game 10 Pitch Location Model 13 Pitch Type Model 21 Hypotheses 24 Pitch Location Model 24 Pitch Type Model 31 Data Analysis 33 Data 33 Pitch Location Model 34 Pitch Type Model 37 Conclusion 41 Summary of Results 41 Future Research 43 References 44 Appendix A 47 Appendix B 59 2 Acknowledgements I would like to thank everyone who had a role in this paper’s completion. This begins with the Office of Undergraduate Research, who provided me with the funds necessary to complete this project, and everyone at Baseball Info Solutions, in particular Ben Jedlovec and Jeff Spoljaric, who provided me with data.
    [Show full text]
  • Does Sabermetrics Have a Place in Amateur Baseball?
    BaseballGB Full Article Does sabermetrics have a place in amateur baseball? Joe Gray 7 March 2009 he term “sabermetrics” is one of the many The term sabermetrics combines SABR (the acronym creations of Bill James, the great baseball for the Society for American Baseball Research) and theoretician (for details of the term’s metrics (numerical measurements). The extra “e” T was presumably added to avoid the difficult-to- derivation and usage see Box 1). Several tight pronounce sequence of letters “brm”. An alternative definitions exist for the term, but I feel that rather exists without the “e”, but in this the first four than presenting one or more of these it is more letters are capitalized to show that it is a word to valuable to offer an alternative, looser definition: which normal rules of pronunciation do not apply. sabermetrics is a tree of knowledge with its roots in It is a singular noun despite the “s” at the end (that is, you would say “sabermetrics is growing in the philosophy of answering baseball questions in as popularity” rather than “sabermetrics are growing in accurate, objective, and meaningful a fashion as popularity”). possible. The philosophy is an alternative to The adjective sabermetric has been back-derived from the term and is exemplified by “a sabermetric accepting traditional thinking without question. tool”, or its plural “sabermetric tools”. The adverb sabermetrically, built on that back- Branches of the sabermetric tree derived adjective, is illustrated in the phrase “she The metaphor of sabermetrics as a tree extends to approached the problem sabermetrically”. describing the various broad concepts and themes of The noun sabermetrician can be used to describe any practitioner of sabermetrics, although to some research as branches.
    [Show full text]
  • Major League Baseball and the Dawn of the Statcast Era PETER KERSTING a State-Of-The-Art Tracking Technology, and Carlos Beltran
    SPORTS Fans prepare for the opening festivities of the Kansas City Royals and the Milwaukee Brewers spring training at Surprise Stadium March 25. Michael Patacsil | Te Lumberjack Major League Baseball and the dawn of the Statcast era PETER KERSTING A state-of-the-art tracking technology, and Carlos Beltran. Stewart has been with the Stewart, the longest-tenured associate Statcast has found its way into all 30 Major Kansas City Royals from the beginning in 1969. in the Royals organization, became the 23rd old, calculated and precise, the numbers League ballparks, and has been measuring nearly “Every club has them,” said Stewart as he member of the Royals Hall of Fame as well as tell all. Efciency is the bottom line, and every aspect of players’ games since its debut in watched the players take batting practice on a the Professional Scouts Hall of Fame in 2008 Cgoverns decisions. It’s nothing personal. 2015. side feld at Surprise Stadium. “We have a large in recognition of his contributions to the game. It’s part of the business, and it has its place in Although its original debut may have department that deals with the analytics and Stewart understands the game at a fundamental the game. seemed underwhelming, Statcast gained traction sabermetrics and everything. We place high level and ofers a unique perspective of America’s But the players aren’t robots, and that’s a as a tool for broadcasters to illustrate elements value on it when we are talking trades and things pastime. good thing, too. of the game in a way never before possible.
    [Show full text]
  • "What Raw Statistics Have the Greatest Effect on Wrc+ in Major League Baseball in 2017?" Gavin D
    1 "What raw statistics have the greatest effect on wRC+ in Major League Baseball in 2017?" Gavin D. Sanford University of Minnesota Duluth Honors Capstone Project 2 Abstract Major League Baseball has different statistics for hitters, fielders, and pitchers. The game has followed the same rules for over a century and this has allowed for statistical comparison. As technology grows, so does the game of baseball as there is more areas of the game that people can monitor and track including pitch speed, spin rates, launch angle, exit velocity and directional break. The website QOPBaseball.com is a newer website that attempts to correctly track every pitches horizontal and vertical break and grade it based on these factors (Wilson, 2016). Fangraphs has statistics on the direction players hit the ball and what percentage of the time. The game of baseball is all about quantifying players and being able give a value to their contributions. Sabermetrics have given us the ability to do this in far more depth. Weighted Runs Created Plus (wRC+) is an offensive stat which is attempted to quantify a player’s total offensive value (wRC and wRC+, Fangraphs). It is Era and park adjusted, meaning that the park and year can be compared without altering the statistic further. In this paper, we look at what 2018 statistics have the greatest effect on an individual player’s wRC+. Keywords: Sabermetrics, Econometrics, Spin Rates, Baseball, Introduction Major League Baseball has been around for over a century has given awards out for almost 100 years. The way that these awards are given out is based on statistics accumulated over the season.
    [Show full text]
  • Baseball U Maryland Defensive Philosophy
    Baseball U Maryland Defensive Philosophy Defense LONG TOSS AS MUCH AS POSSIBLE Individual skill work is a priority GET BETTER everyday Team Defensive Concepts: We will be fundamentally sound defensively- both physically and mentally. 1. Win the Free Base War : BB,HBP, errors, extra bases, mental mistakes 2. Prevent the Big Inning : 3 or more runs 3. Keep Double Play a pitch away (keep runners at 1B) 4. Communicate, Communicate, Communicate Goal: .970 fielding percentage (relates to 1 per game) - majority of errors should be IF play (3b,SS, 2b)- 1B, C, P, and OF cannot attribute to errors. Catching a. Catcher needs to be the most athletic guy on the field…VERY TOUGH b. Catcher has to be a LEADER…MUST BE VOCAL…confidence is key a. MUST be constantly communicating the defense b. MUST know each pitcher and situation c. Before the 1st pitch is thrown, get to know the umpire-“Good Morning, my name is …..” d. Calling Pitches: a. When giving signs, they must be hidden b. Be consistent when calling pitches (i.e. 1-FB, 2 CB, etc.)(Be consistent with a runner on base (i.e. 2nd sign, etc.) c. Know what the Pitchers BEST pitch is THAT DAY d. Avoid tendencies (i.e. every 0-2 count, throw CB) e. Defensive tenets: a. Receiving (80%) (1) be on time, (2) manipulate the ball, (3) keep strikes strikes i. 1 knee vs. 2 knee stances…comfort, try it all in bullpens for best results b. Blocking (15%) (1) know the pitcher, (2) anticipate block, (3) control the baseball i.
    [Show full text]