Converts a single chromatogram from ChemStation .uv
format to R
data.frame
.
uv_converter(
path,
format_out = c("matrix", "data.frame", "data.table"),
data_format = c("wide", "long"),
correction = TRUE,
read_metadata = TRUE,
metadata_format = c("chromconverter", "raw")
)
A chromatogram in data.frame
format (retention time x wavelength).
Path to file
Class of output. Either matrix
, data.frame
,
or data.table
.
Whether to return data in wide
or long
format.
Logical. Whether to apply empirical correction. Defaults is TRUE.
Logical. Whether to read metadata and attach it to the chromatogram.
Format to output metadata. Either chromconverter
or raw
.
Uses the Aston file parser.
Other external parsers:
call_entab()
,
call_openchrom()
,
call_rainbow()
,
read_thermoraw()
,
sp_converter()