GetGroupFactor: GetGroupFactor.

View source: R/GetGroupFactor.R

GetGroupFactorR 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))


InterpretMSSpectrum documentation built on July 9, 2023, 5:58 p.m.