This dataset contains daily traffic counts close to Sonnenberg, located in the Harz region in Germany. It covers a period of nearly three years, from 2021-01-01 to 2023-11-30.
Usage
data("HarzTraffic", package = "gamlss2")
Format
A data frame containing 1057 observations on 16 variables.
date
Date, the date of the record.
yday
Integer, the day of the year.
bikes
Integer, the number of motorcycles on that day.
cars
Integer, the number of cars on that day.
trucks
Integer, the number of trucks on that day.
others
Integer, the number of other vehicles on that day.
tempmin
Numeric, minimum temperature in \(^{\circ}C\).
tempmax
Numeric, maximum temperature in \(^{\circ}C\).
temp
Numeric, mean temperature in \(^{\circ}C\).
humidity
Numeric, mean relative humidity in percent.
tempdew
Numeric, average dewpoint temperature in \(^{\circ}C\).
cloudiness
Numeric, average cloud cover in percent.
rain
Numeric, amount of precipitation in mm (snow and rain).
sunshine
Numeric, sunshine duration in minutes.
wind
Numeric, mean wind speed in m/s.
windmax
Numeric, maximum wind speed in m/s.
Source
Weather Data:
Data Source:
Deutscher Wetterdienst (DWD), Climate Data Center (CDC).
library("gamlss2")## seasonal variation of motorcycle counts at Sonnenberg/Harzdata("HarzTraffic", package ="gamlss2")plot(bikes ~ yday, data = HarzTraffic)