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")
Run the code above in your browser using DataLab