View source: R/calibrate.datalogger.R
calibrate.datalogger | R Documentation |
Calibrate a time series of temperatures. Use or gam or glm. If no temperatures.series is given, it will use the read.temperatures.
calibrate.datalogger(
control.temperatures = stop("Control temperatures is missing"),
read.temperatures = stop("Read temperatures must be indicated"),
temperatures.series = NULL,
gam = TRUE,
se.fit = TRUE
)
control.temperatures |
The true temperatures during the calibration process |
read.temperatures |
The read temperatures during the calibration process |
temperatures.series |
The temperatures to be converted using calibration |
gam |
Does gam should be used (TRUE) or glm (FALSE). |
se.fit |
Do standard errors are to be returned |
calibrate.datalogger calibrates data loggers and correct time series of temperatures.
The function will return a corrected time series of temperatures as a vector if se.fit is FALSE or a list if se.fit is TRUE.
Marc Girondot
11124embryogrowth
Other Data loggers utilities:
movement()
,
uncertainty.datalogger()
## Not run:
library(embryogrowth)
calibrate.datalogger(control.temperatures=20:30,
read.temperatures=(20:30)+rnorm(11))
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.