Compare a vector within (between) other values
Details
type, bounds can be one of the below:
"g",(is greater than (
>)"ge",[greater than or equal to (
>=)"l",)less than (
<)"le",]less than or equal to (
<=)
Note: [mark::between_more()] may be deprecated in the future in favor of just [mark::within()]
[}{greater than or equal to (>=)} \item{"l", )}{less than (<)} \item{"le", ]: R:%60%7D%7Bgreater%20than%20or%20equal%20to%20(%60%3E=%60)%7D%0A%20%5C%5Citem%7B%60%22l%22%60,%20%60)%60%7D%7Bless%20than%20(%60%3C%60)%7D%0A%20%5C%5Citem%7B%60%22le%22%60,%20%60
[mark::between_more()]: R:mark::between_more()
[mark::within()]: R:mark::within()
Examples
between_more(2:10, 2, 10, "gl")
#> [1] FALSE TRUE TRUE TRUE TRUE TRUE TRUE TRUE FALSE
within(2:10, 2, bounds = "()")
#> [1] FALSE TRUE TRUE TRUE TRUE TRUE TRUE TRUE TRUE
between_more(10, 2, 10, "gle")
#> [1] TRUE
within(2:10, bounds = "(]")
#> [1] 2 3 4 5 6 7 8 9 10
within(1:5, c(3, 3, 2, 2, 1), 5)
#> [1] FALSE FALSE TRUE TRUE TRUE