Aggregate hourly data to daily temperature statistics
aggregate_hourly_temperature(
df_hourly,
time_col = "datetime",
temp_col = "temperature",
tz = "UTC"
)A tibble with columns: date, tmax, tmin
Data frame with hourly temperature data
Name of the datetime column (must be POSIXct) (string)
Name of the hourly temperature column (string)
Timezone (default: "UTC")