splitObjects(affyPara)
splitObjects()所属R语言包:affyPara
Functions to split objects into parts
功能分割成几部分对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Functions to split an AffyBatch, a list of files and a matrix into several objects for distributed computing. If possible objects will be of the same size.
分裂AffyBatch,list的文件和matrix到分布式计算的几个对象的功能。如果可能的对象将是同样大小的。
用法----------Usage----------
splitAffyBatch(abatch, number.part)
splitFileVector(fileVec, number.part)
splitMatrix(matrix, number.part)
参数----------Arguments----------
参数:abatch
An object of class AffyBatch.
对象类AffyBatch。
参数:fileVec
A character vector containing the names of the files.
一个character向量的文件名。
参数:matrix
An object of class matrix.
矩阵类的对象。
参数:number.part
Number of parts to split the object
零件数分裂的对象
Details
详情----------Details----------
splitAffyBatch Splits an AffyBatch into a list of AffyBatches.
splitAffyBatch分割成AffyBatches列表AffyBatch。
splitFileVector Splits a character vector of file names into a list of character vectors with file names.
splitFileVectorcharacter的文件名向量分割成character向量文件名列表。
splitMatrix Splits a matrix by columns into a list of matrices.
splitMatrix分割到matrix的矩阵列list。
These functions use the functions splitIndices and splitCols from the SNOW package.
这些功能使用SNOW包的功能splitIndices和splitCols。
值----------Value----------
A list of the split objects.
一个list分割对象。
作者(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)
spAffyB <- splitAffyBatch(Dilution, 2)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|