View source: R/retentionIndexing.R
indexRtime | R Documentation |
indexRtime
uses a list of known substances to convert retention times (RTs)
to retention indices (RIs). By this retention information is normalized
for differences in experimental settings, such as gradient delay volume,
dead volume or flow rate. By default linear interpolation is performed,
other ways of calculation can supplied as function.
indexRtime(x, y, FUN = rtiLinear, ...)
x |
|
y |
|
FUN |
|
... |
additional parameter used by |
numeric
vector of same length as x with retention indices. Values
floating point decimals. If integer values shall be used conversion has
to be performed manually
Michael Witting
rti <- data.frame(rtime = c(1,2,3),
rindex = c(100,200,300))
rtime <- c(1.5, 2.5)
indexRtime(rtime, rti)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.