Description Usage Format Source Examples
This data set contains various informations about the climate in Freiburg from 1950 to 2010 in a monthly rhythm.
1 |
A data frame with 732 observations on 8 variables:
begin of interval (year)
begin of interval (month)
monthly mean of daily temperature means in 2m height in °C
monthly mean of daily temperature maxima in 2m height in °C
monthly mean of daily temperature minima in 2m height in °C
monthly mean of daily wind speed in Bft
monthly sum of sunshine duration in h
monthly sum of precipitation height in mm
DWD Climate Data Center (CDC): Historical monthly station observations (temperature, pressure, precipitation, sunshine duration, etc.) for Germany, version v007, 2018. (http://dwd.de)
1 2 3 4 5 6 7 8 9 | ## mean of the max. temperatures
mean(klimaFR$temp_max, na.rm = TRUE)
## sum of sunshine duration in 1950
sum(klimaFR$sun_dur[1:12])
## smallest an largest min. temperature
min(klimaFR$temp_min, na.rm = TRUE)
max(klimaFR$temp_min, na.rm = TRUE)
## precipitation in every december
klimaFR$precip[klimaFR$month == "12"]
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.