between_more | R Documentation |
Additional functionality and expansion of dplyr::between
between_more(x, left, right, type = c("gele", "gel", "gle", "gl"))
x |
A numeric vector of values |
left , right |
Boundary values |
type |
Abbreviation for the evaluation of |
Type can be one of the below:
is greater than (>)
greater than or equal to (>=)
less than (<)
less than or equal to (<=)
A logical vector
dplyr::case_when()
between_more(10, 2, 10, "gl")
between_more(10, 2, 10, "gle")
between_more(1:5, c(3, 3, 2, 2, 1), 5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.