Skip to contents

Read Logger File from VEGA BAR54

Usage

readLogger_VEGA_BAR54(
  filename,
  date_yyyymmdd = "",
  sep = "\t",
  dec = ",",
  timeformat = .defaultTimeFormat("v2"),
  headerPattern = "Uhrzeit\tDruck"
)

Arguments

filename

full path to inoput file

date_yyyymmdd

day of measurements as text in format "yyyymmdd", e.g. "20140423" for April 23 of 2014

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("VEGA/example_VEGA_BAR54.txt"))

# read the file
x <- readLogger_VEGA_BAR54(file)
  
# examine the structure of the result
str(x)
}