Hurrican {BSDA} | R Documentation |
Data for Exercises 1.38, 10.19, and Example 1.6
Hurrican
A data frame with 46 observations on the following 5 variables.
year
storms
hurrican
ElNino
cold
neutral
warm
code
Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Duxbury
str(Hurrican) attach(Hurrican) barplot(table(hurrican),col="blue",main="Problem 1.38", xlab="Number of Hurricanes",ylab="Number of Seasons") boxplot(storms~ElNino) anova(lm(storms~ElNino)) detach(Hurrican)