GetGroupFactor {InterpretMSSpectrum} | R Documentation |
GetGroupFactor.
Description
GetGroupFactor
will split a numeric vector according to a specified gap value. This is often a useful tool and therefore exported to the namespace.
Usage
GetGroupFactor(x, gap)
Arguments
x |
Numeric vector. |
gap |
Difference between two consecutive values at which a split is generated. |
Value
A factor vector of length(x) indicating the different groups in x.
Examples
x <- c(1:3,14:12,6:9)
GetGroupFactor(x=x, gap=2)
split(x, GetGroupFactor(x=x, gap=2))
[Package InterpretMSSpectrum version 1.4.5 Index]