dimnames(CALIB)
dimnames()所属R语言包:CALIB
Retrieve the Dimension Names of an RGList\_CALIB or SpikeList object.
检索RGList \ _CALIB或SpikeList对象的维度名称。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Retrieve the the dimension names of an RGList\_CALIB object or an SpikeList object
检索一个RGList \ _CALIB对象的维度名称或SpikeList对象
用法----------Usage----------
## S3 method for class 'RGList_CALIB'
dimnames(x)
参数----------Arguments----------
参数:x
an object of class RGList_CALIB or SpikeList.
类RGList_CALIB或SpikeList的对象。
Details
详情----------Details----------
The dimension names of a micrroarry object or a spike object are the same as those of the most important matrix component of that object.
一个micrroarry对象或穗对象的尺寸名称作为该对象的最重要的基质成分相同。
A consequence is that row and column command rownames and colnames also work.
一个后果是,行和列命令rownames和colnames也可以。
值----------Value----------
Either NULL or a list of length 2. If the value is a list, its componets are either NULL or a character vector with the length of the appropriate dimension of x. If the list component is not NULL, the first field of the list indicates rownames and the second field indicates colnames.
要么NULL或一个长度为2的列表。如果该值是一个列表,其成分主要要么NULL或x适当尺寸的长度与特征向量。如果列表组件是非NULL,列表的第一个字段表示rownames和第二个字段表示colnames。
作者(S)----------Author(s)----------
Hui Zhao
参考文献----------References----------
<h3>See Also</h3> <code>dimnames</code> in the base package
举例----------Examples----------
# for RGList_CALIB[为RGList_CALIB]
R <- G <- matrix(1:8,4,2)
rownames(R) <- rownames(G) <- c("g1","g2","g3","g4")
colnames(R) <- colnames(G) <- c("a1","a2")
RG <- new("RGList_CALIB",list(R=R,G=G))
dimnames(RG)
# for SpikeList[为SpikeList]
SR <- SG <- matrix(1:8,4,2)
rownames(SR) <- rownames(SG) <- c("s1","s2","s3","s4")
colnames(SR) <- colnames(SG) <- c("a1","a2")
spike <- new("SpikeList",list(R=SR,G=SG))
dimnames(spike)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|