get.array.subset.affybatch(simpleaffy)
get.array.subset.affybatch()所属R语言包:simpleaffy
Get a subset of arrays from an affybatch object, split by phnotypic data
得到了从affybatch对象数组的子集,由phnotypic数据分割
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Looks at a factor in the phenotypic data for an AffyBatch or ExpressionSet object and uses it to select a subset of arrays, as defined by 'members'.
看起来因素在AffyBatch或ExpressionSet对象,并用它来选择“成员”的定义一个数组的子集,表型数据。
用法----------Usage----------
get.array.subset.affybatch(x, group, members)
get.array.subset.exprset(x, group, members)
参数----------Arguments----------
参数:x
An AffyBatch or ExpressionSet object.
AffyBatch或ExpressionSet对象。
参数:group
The name of the pData column to use.
使用的PDATA列的名称。
参数:members
The labels within the pData column to match against.
以匹配在PDATA列标签。
Details
详情----------Details----------
Subsetting an AffyBatch object by array is achieved using [x,], while the same is achieved for an ExpressionSet by [,x]. Hence the two different functions. In general the generic method get.array.subset should be used - since it sorts this all out automatically.
通过数组子集AffyBatch对象实现使用[x,],而同样是实现ExpressionSet[,x]。因此,两种不同的功能。一般通用的方法get.array.subset应使用 - 这一切,因为它各种出自动。
值----------Value----------
An AffyBatch or ExpressionSet (as appropriate) containing the selected subset of chips.
AffyBatch或ExpressionSet(如适用)含芯片选择的子集。
作者(S)----------Author(s)----------
Crispin J Miller
举例----------Examples----------
## Not run: [#无法运行:]
subset1 <- get.array.subset.affybatch(eset.rma,"group","A")
subset2 <- get.array.subset.exprset(eset.rma,"group",c("A","P"))
subset3 <- get.array.subset(eset.rma,"group","A")
## End(Not run)[#结束(不运行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|