| Hitters {ISLR2} | R Documentation |
Baseball Data
Description
Major League Baseball Data from the 1986 and 1987 seasons.
Usage
Hitters
Format
A data frame with 322 observations of major league players on the following 20 variables.
AtBatNumber of times at bat in 1986
HitsNumber of hits in 1986
HmRunNumber of home runs in 1986
RunsNumber of runs in 1986
RBINumber of runs batted in in 1986
WalksNumber of walks in 1986
YearsNumber of years in the major leagues
CAtBatNumber of times at bat during his career
CHitsNumber of hits during his career
CHmRunNumber of home runs during his career
CRunsNumber of runs during his career
CRBINumber of runs batted in during his career
CWalksNumber of walks during his career
LeagueA factor with levels
AandNindicating player's league at the end of 1986DivisionA factor with levels
EandWindicating player's division at the end of 1986PutOutsNumber of put outs in 1986
AssistsNumber of assists in 1986
ErrorsNumber of errors in 1986
Salary1987 annual salary on opening day in thousands of dollars
NewLeagueA factor with levels
AandNindicating player's league at the beginning of 1987
Source
This dataset was taken from the StatLib library which is maintained at Carnegie Mellon University. This is part of the data that was used in the 1988 ASA Graphics Section Poster Session. The salary data were originally from Sports Illustrated, April 20, 1987. The 1986 and career statistics were obtained from The 1987 Baseball Encyclopedia Update published by Collier Books, Macmillan Publishing Company, New York.
References
James, G., Witten, D., Hastie, T., and Tibshirani, R. (2013) An Introduction to Statistical Learning with applications in R, https://www.statlearning.com, Springer-Verlag, New York
Examples
summary(Hitters)
lm(Salary~AtBat+Hits,data=Hitters)