如何将“TRUE FALSE”与“TRUE FALSE”结合起来?变为“FALSE”使用R?
我正在使用 %in%
来查看向量是否包含我需要的内容,如下所示:
> c(1,2)%in%1:4
[1] TRUE TRUE
> c(1,5)%in%1:4
[1] TRUE FALSE
对于第一种情况,我希望最终结果是单个 TRUE
并且对于第二种情况,结果必须是单个FALSE
(即像 AND 真值表)。
怎么办呢?
谢谢。
I am using %in%
to see if the vector contain what I need, like below:
> c(1,2)%in%1:4
[1] TRUE TRUE
> c(1,5)%in%1:4
[1] TRUE FALSE
For the first case, I want the final outcome to be a single TRUE
and for the second case, the outcome needs to be a single FALSE
(i.e. like a AND truth table).
How can it be done?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用全部():
Use all():