data.table (version 1.6.1)

between: Convenience function for range subset logic.

Description

Intended for use in [.data.table i.

Usage

between(x,lower,upper,incbounds=TRUE)
x

Arguments

x
Any vector e.g. numeric, character, date, ...
lower
Lower range bound.
upper
Upper range bound.
incbounds
TRUE means inclusive bounds i.e. [lower,upper]. FALSE means exclusive bounds i.e. (lower,upper).

Value

  • Integer vector containing the locations of x which lie within the range [lower,upper] or (lower,upper).

See Also

data.table, like

Examples

Run this code
DT = data.table(a=1:5, b=6:10)
    DT[b %between% c(7,9)]

Run the code above in your browser using DataCamp Workspace