Learn R Programming

SoilHyP (version 0.1.4)

read.kupf: Read Evaporation Experiment data from ku-pf Apparatur

Description

Reads multiple ku-pf Apparatur files from a directory and returns them as list of data.tables.

Usage

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",
  ...
)

Arguments

path

path to ku-pf files (character)

colnames.out

colnames of output (default: c('ts', 'tens.up', 'tens.low', 'weight'))

firstrow.char

character in first row of ku-pf files (default: 'Date/Time Tension top Tension bottom Weight') (see details)

format.time_stamp

POSIXct format of the time stamp column (column 1, here named 'ts') (see strptime)

tz.time_stamp

time zone of the time stamp column (column 1, here named 'ts') (default: 'GMT') (see as.POSIXct)

...

arguments to list.files

Value

list of the class dataSEM containing data.tables as list elements.

Details