Reads multiple ku-pf Apparatur files from a directory and returns them as list of data.tables.
read.kupf(
path,
colnames.out = c("ts", "tens.up", "tens.low", "weight"),
firstrow.char = "Date/Time\tTension top\tTension bottom\tWeight",
format.time_stamp = "%d.%m.%Y %H:%M:%S",
tz.time_stamp = "GMT",
...
)
path to ku-pf files (character)
colnames of output (default: c('ts', 'tens.up', 'tens.low', 'weight'))
character in first row of ku-pf files (default: 'Date/Time Tension top Tension bottom Weight') (see details)
POSIXct format of the time stamp column (column 1, here named 'ts') (see strptime
)
time zone of the time stamp column (column 1, here named 'ts') (default: 'GMT') (see as.POSIXct
)
arguments to list.files
list of the class dataSEM containing data.tables as list elements.