read_hobo_csv: Read HOBO logger csv files exported from HOBOware Pro

Description Usage Arguments Value Examples

Description

This function concerns itself only with the first three columns of data in the HOBOware Pro generated csv file, which in our particular use case includes only the sequence of temperature measurement, the timestamp of the measurement, and the measurement itself. Any other attached devices are ignored.

Usage

1
read_hobo_csv(hobo_csv = NULL)

Arguments

hobo_csv

character path to input csv file. If not specified, user is prompted to browse for the input csv file.

Value

a data.frame of logger serial #, date/time of logged temperature, and temperature (Fahrenheit)

Examples

1
2
3
4
5
6
test <- read_hobo_csv(system.file("extdata", "test.csv", package = "r4streams"))
## Not run: 
# No csv file specified; user asked to browse
test <- read_hobo_csv()

## End(Not run)

adamdsmith/r4streams documentation built on May 14, 2019, 10:33 a.m.