sundance | R Documentation |
This function summarizes temperature and relative humidity data from Onset data loggers.
sundance(my_data)
my_data |
A data frame with from
|
This function summarizes temperature and relative humidity data from Onset
loggers. It uses the data_raw data frame produced from
import_hobo_2008
ro import_hobo
and
returns a data frame of summarized temperature or relative humidity data.
This function returns a tibble
.
The unique ID number for the long-term monitoring plot.
The date the data were recorded.
The mean daily temperature.
The minimum daily temperature.
The maximum daily temperature.
The number of records for that day.
The time of minimum daily temperature.
The time of maximum daily temperature.
The unit of the measurement.
import_hobo_2008
, import_hobo
## Not run: library("raindancer") # Generate list of files file_list <- list.files(path = system.file("extdata", package = "raindancer"), pattern = ".csv", full.names = TRUE, recursive = FALSE) # Temperature data my_temp <- import_hobo_2008(file_list[4])$data_raw sundance(my_temp) # Relative humidity data my_rh <- import_hobo(file_list[8])$data_raw sundance(my_rh) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.