View source: R/tidy_hobo_data.R
tidy_hobo_data | R Documentation |
This function loads raw HOBO STIC CSV files and cleans up columns and headers
tidy_hobo_data(infile, outfile = FALSE, convert_utc = TRUE)
infile |
filename (including path or URL if needed) for a raw CSV file exported from HOBOware. |
outfile |
filename (including path if needed) to save the tidied data frame. Defaults to |
convert_utc |
a logical argument indicating whether the user would like to convert from the time zone associated with their CSV to UTC |
a tidied data frame with the following column names: datetime
, condUncal
(uncalibrated conductivity, units: lux), tempC
(temperature, units: degrees Celsius).
clean_data <-
tidy_hobo_data(
infile = "https://samzipper.com/data/raw_hobo_data.csv",
outfile = FALSE, convert_utc = TRUE
)
head(clean_data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.