indexFindInterval {rindex} | R Documentation |
Find index positions in interval of search values
indexFindInterval(obj, low = NULL, high = NULL, low.include = TRUE, high.include = TRUE, low.exact = FALSE, high.exact = FALSE, lowFUN = FUN, highFUN = FUN, FUN = indexFind)
obj |
an object of class ‘index’ |
low |
low search value |
high |
high search value |
low.include |
FALSE to not include the lower search value (default TRUE) |
high.include |
FALSE to not include the upper search value (default TRUE) |
low.exact |
TRUE to require the the low search value is present (default FALSE) |
high.exact |
TRUE to require the the upper search value is present (default FALSE) |
lowFUN |
low level search function to identify lower index position (default FUN ) |
highFUN |
low level search function to identify lower index position (default FUN ) |
FUN |
low level search function to identify both index positions (default indexFind ) |
indexFindInterval | finding a sequence of exact or approximate values |
An integer sequence of index positions
Jens Oehlschlägel