between | R Documentation |
between()
utilizes data.table::between()
in the background
between(x, left, right)
x |
A numeric vector |
left , right |
Boundary values |
df <- data.table(
x = 1:5,
y = 1:5
)
# Typically used in a filter()
df %>%
filter(between(x, 2, 4))
df %>%
filter(x %>% between(2, 4))
# Can also use the %between% operator
df %>%
filter(x %between% c(2, 4))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.