Description Usage Format See Also Examples
These data frames provide descriptive labels for the variables in the
Batting,
Pitching and
Fielding files (and related *Post files).
They are useful for plots and other output using Label.
1 2 3 4 5 |
Each is data frame with observations on the following 2 variables.
variablevariable name
labelvariable label
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | data(battingLabels)
str(battingLabels)
require(plyr)
# find and plot maximum number of homers per year
batHR <- ddply(subset(Batting, !is.na(HR)), .(yearID),
summarise, max=max(HR))
with(batHR, {
plot(yearID, max,
xlab=Label("yearID"), ylab=paste("Maximum", Label("HR")),
cex=0.8)
lines(lowess(yearID, max), col="blue", lwd=2)
abline(lm(max ~ yearID), col="red", lwd=2)
})
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.