Find all positions of all matches of one vector of

2019-02-17 09:57发布

问题:

I need to find all positions in my vector corresponding to any of values of another vector:

needles <- c(4, 3, 9)
hay <- c(2, 3, 4, 5, 3, 7)
mymatches(needles, hay) # should give vector: 2 3 5 

Is there any predefined function allowing to do this?

回答1:

This should work:

which(hay %in% needles) # 2 3 5


回答2:

R already has the the match() fn / %in% operator, which are the same thing, and they're vectorized. Your solution:

which(!is.na(match(hay, needles)))
[1] 2 3 5

or the shorter syntax which(hay %in% needles) as @jalapic showed.

With match(), if you wanted to, you could see which specific value was matched at each position...

match(hay, needles)
[1] NA  2  1 NA  2 NA

or a logical vector of where the matches occurred:

!is.na(match(hay, needles))
[1] FALSE  TRUE  TRUE FALSE  TRUE FALSE