Suppose I have the following vector:
> x <- sample(1:10,20,replace=TRUE)
> x
[1] 8 6 9 9 7 3 2 5 5 1 6 8 5 2 9 3 5 10 8 2
How can I find which elements are either 8 or 9?
|
|
|
This is one way to do it. First I get the indices at which x is either 8 or 9. Then we can verify that at those indices, x is indeed 8 and 9.
|
|||
|
|
|
To arrive at your answer, you could do the following
|
||||
|
|
Alternatively, if you do not need to use the indices but just the elements you can do
|
|||
|
|