Description Usage Arguments Value Examples
is.isolate
- Logical check of each element in a vector to determine if
an element is isolated, that is not repeated.
is.repeat
- The (semantical) "inverse" to is.isolate
.
1 2 3 | is.isolate(x)
is.repeat(x)
|
x |
A vector of elements. |
Returns a logical vector equal in length to x.
1 2 3 4 | set.seed(3)
(x <- sample(1:3, 9, TRUE))
is.isolate(x)
is.repeat(x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.