cbind(CALIB)
cbind()所属R语言包:CALIB
Combine RGList\_CALIB, SpikeList or ParameterList objects
联合RGList \ _CALIB,SpikeList或ParameterList对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Combine a series of RGList\_CALIB objects or a series of SpikeList objects or a series of<br> ParameterList objects.
结合RGList\_CALIB对象或SpikeList对象或一系列参考ParameterList对象的系列。
用法----------Usage----------
## S3 method for class 'RGList_CALIB'
cbind(..., deparse.level = 1)
## S3 method for class 'RGList_CALIB'
rbind(..., deparse.level = 1)
参数----------Arguments----------
参数:...
RGList_CALIB objects, SpikeList objects or ParameterList objects .
RGList_CALIB对象,SpikeList对象或ParameterList对象。
参数:deparse.level
see cbind in base package.
看到cbind基本包。
Details
详情----------Details----------
cbind combines data objects assuming the same gene lists but different arrays. rbind combines data objects assuming equivalent arrays, i.e., the same RNA targets, but different genes.
cbind结合数据对象,假设相同的基因列表,但不同的阵列。 rbind结合数据对象,假设相当于阵列,即相同的RNA的目标,但不同的基因。
For ParameterList objects, only cbind is available, because it makes no sense to rbind parameter.
对于ParameterList对象,只有cbind是可用的,因为它是没有意义的rbind参数。
For RGList_CALIB objects and SpikeList objects, cbind and rbind are both available. 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.
对于RGList_CALIB对象和SpikeList对象,cbind和rbind都可用的。 cbind,从单个对象表达数据矩阵cbinded。目标信息data.frames的,如果他们存在,rbinded。合并后的数据对象将保留任何额外的元件或发现在要合并的第一个对象的属性。 rbind,表达数据的矩阵rbinded而目标信息,在任何不变。
值----------Value----------
An RGList_CAILB, a SpikeList or
RGList_CAILB,SpikeList
a ParameterList object holding data from all the arrays and all genes from the individual objects.
ParameterList对象从所有的阵列和所有的基因,从单个对象数据。
作者(S)----------Author(s)----------
Hui Zhao
参考文献----------References----------
<h3>See Also</h3> <code>cbind</code> in the base package
举例----------Examples----------
R1 <- G1 <- matrix(1:8,4,2)
rownames(R1) <- rownames(G1) <- c("g1","g2","g3","g4")
colnames(R1) <- colnames(G1) <- c("a1","a2")
RG1 <- new("RGList_CALIB",list(R=R1,G=G1))
R2 <- G2 <- matrix(9:16,4,2)
rownames(R2) <- rownames(G2) <- c("g1","g2","g3","g4")
colnames(R2) <- colnames(G2) <- c("a3","a4")
RG2 <- new("RGList_CALIB",list(R=R2,G=G2))
RG <- cbind(RG1,RG2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|