mergeSplitObjects(affyPara)
mergeSplitObjects()所属R语言包:affyPara
Merge a list of split objects
合并分割对象的列表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Functions to merge or combine a list of split objects (AffyBatch, Matrix).
功能或合并一个分裂对象list的(AffyBatch,矩阵)。
用法----------Usage----------
mergeAffyBatches(abatch.list, description = NULL, notes = character(0))
combineMatrices(matrix.list, verbose = getOption("verbose"))
参数----------Arguments----------
参数:abatch.list
A list of objects of class AffyBatch.
一个list类AffyBatch的对象。
参数:description
A MIAME object.
MIAME对象。
参数:notes
A character vector of explanatory text.
一个character解释性文字向量。
参数:matrix.list
A list of objects of class matrix.
一个list类矩阵对象。
参数:verbose
A logical value. If TRUE it writes out some messages.
一个逻辑值。如果TRUE写了一些消息。
Details
详情----------Details----------
Functions to merge or combine a list of split objects.
功能或合并的分割对象list。
mergeAffyBatches Merges a list of AffyBatches to one AffyBatch.
mergeAffyBatches合并的AffyBatches的list1 AffyBatch的。
combineMatrices Combines a list of matrices by columns to one matrix.
combineMatrices结合了一个矩阵的列矩阵list。
值----------Value----------
参数:<code>mergeAffyBatches</code>
Returns ONE object of class AffyBatch.
返回一类AffyBatch的对象。
参数:<code>combineMatrices</code>
Returns ONE object of class matrix.
返回一个矩阵类的对象。
作者(S)----------Author(s)----------
Markus Schmidberger <a href="mailto:schmidb@ibe.med.uni-muenchen.de">schmidb@ibe.med.uni-muenchen.de</a>, Ulrich Mansmann <a href="mailto:mansmann@ibe.med.uni-muenchen.de">mansmann@ibe.med.uni-muenchen.de</a>
举例----------Examples----------
library(affyPara)
if (require(affydata)) {
data(Dilution)
#split AffyBatch[分裂AffyBatch]
abatch.list<- splitAffyBatch(Dilution, 2)
#Merge AffyBatch[合并AffyBatch]
AffyBatch <- mergeAffyBatches(abatch.list)
# Create matrices[创建矩阵]
a <- matrix(1:25, nrow=5)
b <- matrix(101:125, nrow=5)
matrix.list <- list(a,b)
# Combine matrices[结合矩阵]
combineMatrices(matrix.list)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|