summarize_temp {hatchR} | R Documentation |
Summarize temperature data to daily values
Description
The summarize_temp
function is used to summarize sub-daily temperature
measurements to obtain mean daily temperature.
Usage
summarize_temp(data, dates, temperature)
Arguments
data |
A data.frame, or data frame extension (e.g. a tibble). |
dates |
Column representing the date of temperature measurements. |
temperature |
Column representing temperature values. |
Value
A data.frame with summarized daily temperature values.
Examples
library(hatchR)
summarize_temp(
data = idaho,
dates = date,
temperature = temp_c
)
[Package hatchR version 0.3.2 Index]