AwardsShareManagers table
Award voting for managers awards
data(AwardsShareManagers)
A data frame with 425 observations on the following 7 variables.
awardID
name of award votes were received for
yearID
Year
lgID
League; a factor with levels AL
NL
playerID
Manager (player) ID code
pointsWon
Number of points received
pointsMax
Maximum number of points possible
votesFirst
Number of first place votes
Lahman, S. (2021) Lahman's Baseball Database, 1871-2021, 2021 version, https://www.seanlahman.com/baseball-archive/statistics/
# Voting for the BBWAA Manager of the Year award by year and league require("dplyr") # Sort in decreasing order of points by year and league AwardsShareManagers %>% group_by(yearID, lgID) %>% arrange(desc(pointsWon)) # Any unanimous winners? AwardsShareManagers %>% filter(pointsWon == pointsMax) # Manager with highest proportion of possible points AwardsShareManagers %>% mutate(propWon = pointsWon/pointsMax) %>% arrange(desc(propWon)) %>% head(., 1) # Bobby Cox's MOY vote tallies AwardsShareManagers %>% filter(playerID == "coxbo01")
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.