gevregdata {gevreg} | R Documentation |
50 Stations with yearly maxima of snow depth for 100 years and coordinates longitude (lon), latitude (lat) and elevation (alt), roughly corresponding to the domain of Austia.
data("gevregdata")
A data frame containg 5000 rows and 5 columns. The first column (station
) is a factor variable containg the levels 1 to 3. Column 2 (hs
) contains snow depth maxima for 100 years per station, created with revd
. Columns 3 to 5 (lon
, lat
, alt
) are randomly created coordinates.
## load data data("gevregdata") ## histogram and summary of snow all depths hist(gevregdata$hs) summary(gevregdata$hs) ## plot of locations plot(gevregdata$lon,gevregdata$lat)