read81xVar | R Documentation |
Read a Licor generated .x81 file into a data-frame with guessing initial rows
read81xVar(fName, sep = "\t", ..., colsTimeStamp = 3,
formatTS = NULL, tz = "UTC", na.strings = c("",
"NA", "NAN", "\"NAN\""), labelID = "Label:")
fName |
scalar string: file name file information |
sep |
column separator |
... |
further arguments to |
colsTimeStamp |
integer vector: colums with time stamp column (will be set to POSIXct) |
formatTS |
format of the timestamp columns,
see |
tz |
specify a time zone when converting to POSIXct, default: UTC |
na.strings |
see |
labelID |
string at the start of lines indicating the label |
Thomas Wutzler, Oscar Perez Priego
#fName <- "inst/genData/Flux2_140929_1700.81x"
#fName <- "inst/genData/Flux2_140929_1700.81x"
fName <- system.file(
"genData/Flux2_140929_1700.81x", package = "RespChamberProc")
if (nzchar(fName)) {
ds <- read81xVar(fName)
#plot( CO2 ~ Date, ds )
#plot( CO2 ~ Date, ds[ds$iChunk == 9,] )
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.