Description Usage Arguments Value See Also Examples
Tests whether elements of a vector lie between two values (inclusively)
1 | between(x, left, right)
|
x |
Values to test |
left |
Left value |
right |
Right value |
x >= left & x <= right
Other utility functions: cumall,
cumany, cummean,
distribute, first,
lag, last,
lead, n_distinct,
n_groups, nth,
n
1 2 3 | between (5, 1, 10)
between (11, 1, 10)
between (-5, -10, 0)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.