具有“不同于”的子集函数?
是否可以通过说诸如subset(dataset, IA_LABEL not equal to "Er" or "Sie" or "Es" or "wird" or "gleich")之类的东西来使用子集函数? 我感兴趣的是“不等于”运算符,子集函数有类似的东西吗?
谢谢, 卡特琳娜
is it possible to use the subset function by saying sth like subset(dataset, IA_LABEL not equal to "Er" or "Sie" or "Es" or "wird" or "gleich") ?
what interests me is the "not equal to" operator, is there something like that for the subset function?
thanks,
Katerina
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想排除所有这些单词,那么最好结合使用否定 (NOT) 运算符
!
和设置成员资格%in%
。为了使其不区分大小写,您可能需要将它们分别包装在
toupper
或tolower
中。If you are wanting to exclude all of those words, then you are better of using a combination of the negation (NOT) operator,
!
, and set membership,%in%
.To make it case insensitive you might want to wrap each of them in
toupper
ortolower
.不等于运算符写为
!=
详细信息请参见
?Comparison
。使用
子集
的示例:The not equal operator is written
!=
See
?Comparison
for details.An example using
subset
:使用
Hmisc
中的%nin%
函数Using the
%nin%
function inHmisc