lr_parse_ttt {lightr}R Documentation

Parse Avantes converted file

Description

Parse Avantes converted file. https://www.avantes.com/products/spectrometers/

Usage

lr_parse_ttt(filename, ...)

lr_parse_trt(filename, ...)

Arguments

filename

Path of the file to parse

...

ignored

Details

'processed' column computed by official software and provided as is.

Value

A named list of two elements:

Examples

res_ttt <- lr_parse_ttt(
  system.file("testdata", "avantes_export.ttt", package = "lightr")
)
head(res_ttt$data)
res_ttt$metadata

res_trt <- lr_parse_trt(
  system.file("testdata", "avantes_export2.trt", package = "lightr")
)
head(res_trt$data)
res_trt$metadata


[Package lightr version 1.9.0 Index]