read_iris_csv {breathtestcore} | R Documentation |
Read 13C data from IRIS/Wagner Analysen in CSV Format
Description
Reads 13C data from IRIS/Wagner Analysen in CSV Format The CSV files start as follows:
"Name","Vorname","Test","Identifikation"
This format does not have information about the substrate (acetate, octanoate),
the dose and body weight and height. The following defaults are used: substrate = acetate,
dose = 100, weight = 75, height = 180
.
Usage
read_iris_csv(filename = NULL, text = NULL)
Arguments
filename |
Name of IRIS/Wagner file in CSV format |
text |
alternatively, text can be given as string |
Value
List of class breath_test_data
with file name,
patient name, patient first name, test, identifikation
,
and data frame data
with time
and dob
Examples
filename = btcore_file("IrisCSV.TXT")
cat(readLines(filename, n = 3), sep="\n")
#
iris_data = read_iris_csv(filename)
str(iris_data)
[Package breathtestcore version 0.8.7 Index]