找回密码
 注册
查看: 2078|回复: 0

R语言:sets()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-2-16 17:40:30 | 显示全部楼层 |阅读模式
sets(base)
sets()所属R语言包:base

                                        Set Operations
                                         设置操作

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

Performs set union, intersection, (asymmetric!) difference, equality and membership on two vectors.
执行集,交集,(asymmetric!)两个向量上的差异,平等和成员。


用法----------Usage----------


union(x, y)
intersect(x, y)
setdiff(x, y)
setequal(x, y)

is.element(el, set)



参数----------Arguments----------

参数:x, y, el, set
vectors (of the same mode) containing a sequence of items (conceptually) with no duplicated values.
向量(含没有重复的值项(概念)的序列相同的模式)。


Details

详情----------Details----------

Each of union, intersect, setdiff and setequal will discard any duplicated values in the arguments, and they apply as.vector to their arguments (and so in particular coerce factors to character vectors).
每个union,intersect,setdiff和setequal将丢弃重复值中的任何参数,它们适用于as.vector他们的论据(所以特别强迫因素特征向量)。

is.element(x, y) is identical to x %in% y.
is.element(x, y)x %in% y是相同的。


值----------Value----------

A vector of the same mode as x or y for setdiff and intersect, respectively, and of a common mode for union.
一个向量相同modex或ysetdiff和intersect,分别和共同为union模式。

A logical scalar for setequal and a logical of the same length as x for is.element.
一个setequal和xis.element长度相同的逻辑的逻辑标量。


参见----------See Also----------

%in%
%in%

"plotmath" for the use of union and intersect in plot annotation.
plotmath使用union和intersect图注解。


举例----------Examples----------


(x <- c(sort(sample(1:20, 9)),NA))
(y <- c(sort(sample(3:23, 7)),NA))
union(x, y)
intersect(x, y)
setdiff(x, y)
setdiff(y, x)
setequal(x, y)

## True for all possible x &amp; y :[#真为所有可能的X和Y:]
setequal( union(x,y),
          c(setdiff(x,y), intersect(x,y), setdiff(y,x)))

is.element(x, y)# length 10[长度为10]
is.element(y, x)# length  8[长度为8]

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2025-1-23 03:04 , Processed in 0.019811 second(s), 16 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表