Description Usage Arguments Value Examples
Constructs an iterator that filters elements from iterable returning only
those for which the predicate is TRUE
.
Constructs an iterator that filters elements from iterable returning only
those for which the predicate is FALSE
.
1 2 3 | ifilter(predicate, iterable)
ifilterfalse(predicate, iterable)
|
predicate |
a function that determines whether an element is |
iterable |
an iterable object |
iterator object
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | # Filters out odd numbers and retains only even numbers
is_even <- function(x) {
x %% 2 == 0
}
it <- ifilter(is_even, 1:10)
as.list(it)
# Similar idea here but anonymous function is used to filter out even
# numbers
it2 <- ifilter(function(x) x %% 2 == 1, 1:10)
iterators::nextElem(it2) # 1
iterators::nextElem(it2) # 3
iterators::nextElem(it2) # 5
iterators::nextElem(it2) # 7
iterators::nextElem(it2) # 9
is_vowel <- function(x) {
x %in% c('a', 'e', 'i', 'o', 'u')
}
it3 <- ifilter(is_vowel, letters)
as.list(it3)
# Filters out even numbers and retains only odd numbers
is_even <- function(x) {
x %% 2 == 0
}
it <- ifilterfalse(is_even, 1:10)
as.list(it)
# Similar idea here but anonymous function is used to filter out odd
# numbers
it2 <- ifilter(function(x) x %% 2 == 1, 1:10)
as.list(it2)
is_vowel <- function(x) {
x %in% c('a', 'e', 'i', 'o', 'u')
}
it3 <- ifilterfalse(is_vowel, letters)
iterators::nextElem(it3) # b
iterators::nextElem(it3) # c
iterators::nextElem(it3) # d
iterators::nextElem(it3) # f
iterators::nextElem(it3) # g
# iterators::nextElem(it) continues through the rest of the consonants
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.