Read Logger File from PCE PA8000
Usage
readLogger_PCE_PA8000(
filename,
sep = "\t",
dec = ",",
timeformat = .defaultTimeFormat("v2"),
headerPattern = "Position\tDate\tTime"
)
Arguments
- filename
full path to logger file
- sep
column separator
- dec
decimal character
- timeformat
time format string
- headerPattern
pattern matching the table header row
Examples
if (FALSE) {
# set path to example file (contained in this package)
(file <- extdataFile("PCE/example_PCE_PA8000.txt"))
# read the file
x <- readLogger_PCE_PA8000(file)
# examine the structure of the result
str(x)
}