cbind(limma)
cbind()所属R语言包:limma
Combine RGList, MAList, EList or EListRaw Objects
联合RGList,MAList,EList或EListRaw对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Combine a set of RGList, MAList, EList or EListRaw objects.
结合RGList,MAList,EList或EListRaw对象集。
用法----------Usage----------
## S3 method for class 'RGList'
cbind(..., deparse.level=1)
## S3 method for class 'RGList'
rbind(..., deparse.level=1)
参数----------Arguments----------
参数:...
RGList, MAList, EList or EListRaw objects.
RGList,MAList,EList或EListRaw对象。
参数:deparse.level
not currently used, see cbind in the base package
目前没有使用,cbind在基础包
Details
详情----------Details----------
cbind combines data objects assuming the same probes in the same order but different arrays. rbind combines data objects assuming equivalent arrays, i.e., the same RNA targets, but different probes.
cbind结合假设相同的顺序相同,但不同的阵列探针的数据对象。 rbind结合数据对象,假设相当于阵列,即相同的RNA的目标,但不同的探针。
For cbind, the matrices of expression data from the individual objects are cbinded. The data.frames of target information, if they exist, are rbinded. The combined data object will preserve any additional components or attributes found in the first object to be combined. For rbind, the matrices of expression data are rbinded while the target information, in any, is unchanged.
cbind,从单个对象表达数据矩阵cbinded。目标信息data.frames的,如果他们存在,rbinded。合并后的数据对象将保留任何额外的元件或发现在要合并的第一个对象的属性。 rbind,表达数据的矩阵rbinded而目标信息,在任何不变。
值----------Value----------
An RGList, MAList, EList or EListRaw object holding data from all the arrays and all genes from the individual objects.
RGList,MAList,EList或EListRaw对象从所有的阵列和所有的基因,从单个对象数据。
作者(S)----------Author(s)----------
Gordon Smyth
参见----------See Also----------
cbind in the base package.
cbind基本包。
03.ReadingData gives an overview of data input and manipulation functions in LIMMA.
03.ReadingData给出了一个数据输入和在LIMMA操纵功能概述。
举例----------Examples----------
M <- A <- matrix(11:14,4,2)
rownames(M) <- rownames(A) <- c("a","b","c","d")
colnames(M) <- colnames(A) <- c("A1","A2")
MA1 <- new("MAList",list(M=M,A=A))
M <- A <- matrix(21:24,4,2)
rownames(M) <- rownames(A) <- c("a","b","c","d")
colnames(M) <- colnames(A) <- c("B1","B2")
MA2 <- new("MAList",list(M=M,A=A))
cbind(MA1,MA2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|