Sunspot {BSDA} | R Documentation |
Data for Example 1.7
Sunspot
A data frame with 301 observations on the following 2 variables.
year
sunspots
Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Duxbury
str(Sunspot) attach(Sunspot) plot(year,sunspots,type="l",main="Yearly Sunspots") # Using standard plot library(lattice) xyplot(sunspots ~ 1700:2000, xlab = "", type = "l",main="Yearly Sunspots") xyplot(sunspots ~ 1700:2000, xlab = "", type = "l", aspect="xy", main="Yearly Sunspots") detach(Sunspot)