如何从多个向量中找到共同元素?
谁能告诉我如何从多个向量中找到共同元素?
a <- c(1,3,5,7,9)
b <- c(3,6,8,9,10)
c <- c(2,3,4,5,7,9)
我想从上述向量中获取共同元素(例如:3和9)
Can anyone tell me how to find the common elements from multiple vectors?
a <- c(1,3,5,7,9)
b <- c(3,6,8,9,10)
c <- c(2,3,4,5,7,9)
I want to get the common elements from the above vectors (ex: 3 and 9)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
可能有一种更聪明的方法来解决这个问题,但
可以完成这项工作。
编辑:如果你有很多争论,更聪明、更方便:
There might be a cleverer way to go about this, but
will do the job.
EDIT: More cleverly, and more conveniently if you have a lot of arguments:
已经是一个很好的答案了,但是还有其他几种方法可以做到这一点:
或者,
如果您知道
a
中没有重复的值,那么您显然可以省略unique
调用>、b
或c
。A good answer already, but there are a couple of other ways to do this:
or,
You can obviously omit the
unique
calls if you know that there are no repeated values withina
,b
orc
.更新编辑
更简单的代码
UPDATE EDIT
A simpler code