dim(maigesPack)
dim()所属R语言包:maigesPack
Retrieve the dimension of microarray objects
检索尺寸芯片对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Generic function dim to retrieve the number of rows (genes) and columns (arrays) for classes maigesPreRaw, maigesRaw, maiges and maigesANOVA.
泛型函数dim检索类的行数(基因)和列(数组)maigesPreRaw,maigesRaw,maiges和maigesANOVA。
用法----------Usage----------
## S3 method for class 'maigesPreRaw'
dim(x)
## S3 method for class 'maigesRaw'
dim(x)
## S3 method for class 'maiges'
dim(x)
## S3 method for class 'maigesANOVA'
dim(x)
参数----------Arguments----------
参数:x
an object of class maigesPreRaw, maigesRaw, maiges or maigesANOVA
一个对象类maigesPreRaw,maigesRaw,maiges或maigesANOVA
Details
详情----------Details----------
This is a function to retrieve the dimensions of the dataset - number of genes (rows) and samples (columns) studied. Note that the commands nrow(x), ncol(x) and commands related with matrix dimensions on also work.
这是一个函数来检索数据集的维度 - 研究的基因(行)和样品(列)的数量。注意命令nrow(x),ncol(x)“上矩阵尺寸与相关的命令也可以。
值----------Value----------
Vector with 2 numbers, the first one is the number of rows (genes) and the second one the number of columns (samples).
2个号码的向量,第一个是行数(基因),第二个列(样品)的数量。
作者(S)----------Author(s)----------
modified from the <code>marray</code> package
参见----------See Also----------
dim in the base package.
dim基本包。
举例----------Examples----------
## Loading the dataset[#载入数据集]
data(gastro)
dim(gastro)
dim(gastro.raw)
dim(gastro.norm)
dim(gastro.summ)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|