Aggregate hourly data to daily precipitation statistics
aggregate_hourly_precipitation(
df_hourly,
time_col = "datetime",
precip_col = "precipitation",
tz = "UTC"
)A tibble with columns: date, prcp
Data frame with hourly precipitation data
Name of the datetime column (must be POSIXct) (string)
Name of the hourly precipitation column (string)
Timezone (default: "UTC")