Hurrican {BSDA}R Documentation

Number of storms, hurricanes and El Nino effects from 1950 through 1995

Description

Data for Exercises 1.38, 10.19, and Example 1.6

Usage

Hurrican

Format

A data frame with 46 observations on the following 5 variables.

year
a numeric vector
storms
a numeric vector
hurrican
a numeric vector
ElNino
a factor with levels cold neutral warm
code
a numeric vector

Source

Kitchens, L. J. (2003) Basic Statistics and Data Analysis. Duxbury

Examples

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)

[Package BSDA version 0.1 Index]