1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
\name{schmidt}
\alias{schmidt}
\docType{data}
\title{Batting data for Mike Schmidt}
\description{
Batting statistics for the baseball player Mike Schmidt
during all the seasons of his career.
}
\usage{
schmidt
}
\format{
A data frame with 18 observations on the following 14 variables.
\describe{
\item{Year}{year of the season}
\item{Age}{Schmidt's age that season}
\item{G}{games played}
\item{AB}{at-bats}
\item{R}{runs scored}
\item{H}{number of hits}
\item{X2B}{number of doubles}
\item{X3B}{number of triples}
\item{HR}{number of home runs}
\item{RBI}{number of runs batted in}
\item{SB}{number of stolen bases}
\item{CS}{number of times caught stealing}
\item{BB}{number of walks}
\item{SO}{number of strikeouts}
}
}
\source{Sean Lahman's baseball database from www.baseball1.com.}
\keyword{datasets}
|