redisSDiff(rredis)
redisSDiff()所属R语言包:rredis
Return the difference of two or more sets.
传回两组或更多组的差异。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Return the (set) difference of two or more sets.
返回的(组)中的两个或更多的套差。
用法----------Usage----------
redisSDiff(keys, ...)
参数----------Arguments----------
参数:keys
A vector or list of keys corresponding to sets. May also be a single key.
一个向量或列表的键对应的集合。也可以是一个单一的键。
参数:...
Additional keys corresponding to sets. See the examples below.
其他键对应的集合。请参见下面的例子。
Details
详细信息----------Details----------
The first argument may be a vector of set names, a list of set names, or a single set name. If only a single set name is specified, specify more sets as additional function arguments as shown in the examples.
第一个参数是一个矢量集名称,集名称的列表,或一组名称。如果只有一个单一的集名称指定,指定作为额外的函数的参数,如在实施例中示出的多套。
值----------Value----------
A list of elements in the difference of the specified sets, or NULL if the intersection is the empty set.
列表中的元素的指定集合的交集是空集,或NULL的区别。
(作者)----------Author(s)----------
B. W. Lewis
参考文献----------References----------
参见----------See Also----------
redisSDiff
redisSDiff
实例----------Examples----------
## Not run: [#不运行:]
redisConnect()
redisSAdd('A',1)
redisSAdd('A',2)
redisSAdd('B',4)
redisSDiff('A','B')
redisSDiff(c('A','B'))
redisSDiff(list('A','B'))
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|