DAAG (version 1.22.1)

droughts: Periods Between Rain Events

Description

Data collected at Winnipeg International Airport (Canada) on periods (in days) between rain events.

Usage

droughts

Arguments

Format

This data frame contains the following columns:

length

the length of time from the completion of the last rain event to the beginning of the next rain event.

year

the calendar year.

Examples

Run this code
# NOT RUN {
  boxplot(length ~ year, data=droughts)
  boxplot(log(length) ~ year, data=droughts)
  hist(droughts$length, main="Winnipeg Droughts", xlab="length (in days)")
  hist(log(droughts$length), main="Winnipeg Droughts", xlab="length (in days, log scale)")

# }

Run the code above in your browser using DataCamp Workspace