SnowGRR Documentation

Snowfall data for Grand Rapids, MI

Description

Official snowfall data by month and season for Grand Rapids, MI, going back to 1893.

Usage

data(SnowGR)

Format

A data frame with 119 observations of the following variables.

Source

These data were compiled by Laura Kapitula from data available at http://www.crh.noaa.gov/grr/climate/data/grr/snowfall/.

Examples

data(SnowGR)
if (require(mosaic)) {
  favstats(SnowGR$Total)
  histogram(~Total, data=SnowGR)
  xyplot(Total ~ SeasonStart, SnowGR, type=c('p','smooth'))
}
if (require(reshape2)) {
  Snow2 <- melt(SnowGR, id=1:2)
  names(Snow2)[3:4] <- c('Time','Snow')
  bwplot(Snow ~ Time, Snow2)
}