read_gasexchange {gasanalyzer} | R Documentation |
Read gas-exchange data from a text file.
Description
Data stored by write_gasexchange()
can be read by this method. The first
row is the header, the second row specify the units. File encoding must be
UTF-16LE (use the export as unicode txt option in Microsoft Excel).
Usage
read_gasexchange(filename, delim = "\t")
Arguments
filename |
path to the input file |
delim |
delimiter to use for the file |
Value
a tibble with gas-exchange data
Examples
example <- system.file("extdata", "d13C.tsv", package = "gasanalyzer")
# read data
read_gasexchange(example)
[Package gasanalyzer version 0.4.1 Index]