linkedmultiget(ecolitk)
linkedmultiget()所属R语言包:ecolitk
A function to look for values across linked environments
寻找联环境之间的值函数
译者:生物统计家园网 机器人LoveR
描述----------Description----------
A function to look for values across linked environments.
函数寻找联环境之间的值。
用法----------Usage----------
linkedmultiget(x, envir.list = list(), unique = TRUE)
参数----------Arguments----------
参数:x
The keys in the first environment in the list.
在列表中的第一环境的钥匙。
参数:envir.list
A list of environments.
环境的名单。
参数:unique
Simplify the list returned by ensuring that the values for each key are unique.
简化返回的列表中,确保每个键的值是唯一的。
Details
详情----------Details----------
Environments can be considered as hashtables. The keys are obviously strings, but in some cases the associated values are also strings. This is the case for annotation environments (as built with the package AnnBuilder). This function helps to look for values across several environments: the keys have associated values in a first environment, these values are used as keys in the second environments, etc...
哈希表可以被视为环境。键显然是字符串,但在某些情况下,相关的值也字符串。这是注释环境的情况下(如建包AnnBuilder)。此功能有助于寻找跨越多个环境值:键相关值在第一个环境,这些值作为第二环境等键..
值----------Value----------
A list of length the length of x.
一个长度x的长度列表。
作者(S)----------Author(s)----------
Laurent Gautier
参见----------See Also----------
mget
mget
举例----------Examples----------
data(ecoligenomeBNUM)
data(ecoligenomeBNUM2MULTIFUN)
data(multiFun)
## get 5 Affymetrix IDs[#得到5 Affymetrix公司标识]
set.seed(456)
my.affyids <- sample(ls(ecoligenomeBNUM), 5)
## get the MULTIFUN annotations for them[#为他们MULTIFUN的注解]
r <- linkedmultiget(my.affyids, list(ecoligenomeBNUM,
ecoligenomeBNUM2MULTIFUN, multiFun))
print(r)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|