| FieldingOFsplit | R Documentation |
FieldingOFsplit table
Description
Outfield position data: information about positions played in the outfield
Usage
data(FieldingOFsplit)
Format
A data frame with 36677 observations on the following 18 variables.
playerIDPlayer ID code
yearIDYear
stintplayer's stint (order of appearances within a season)
teamIDTeam; a factor
lgIDLeague; a factor with levels
AAALFLNLPLUAPOSPosition
GGames
GSGames Started
InnOutsTime played in the field expressed as outs
POPutouts
AAssists
EErrors
DPDouble Plays
PBPassed Balls (by catchers)
WPWild Pitches (by catchers)
SBOpponent Stolen Bases (by catchers)
CSOpponents Caught Stealing (by catchers)
ZRZone Rating
Source
Lahman, S. (2025) Lahman's Baseball Database, 1871-2024, 2025 version, https://sabr.org/lahman-database/
Examples
require("dplyr")
require("tidyr")
## Data set starts in 1954
## Can get a more complete record from the Fielding data frame
## or from the Appearances data (see below)
## Output directly from the FieldingOFsplit data
## Joe DiMaggio (no records: pre-1954 player)
FieldingOFsplit %>%
filter(playerID == "dimagjo01")
## Willie Mays (all but his first few years)
FieldingOF %>%
filter(playerID == "mayswi01")
## Mike Trout (complete)
FieldingOF %>%
filter(playerID == "troutmi01")