stat.gnames(marray)
stat.gnames()所属R语言包:marray
Sort Genes According to the Value of a Statistic
据统计值排序基因
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Lists genes and corresponding statistics in decreasing order of the statistics. This function applies to any type of statistic, including log ratios, one and two-sample t-statistics, and F-statistics. Missing values are ignored, as in sort(..., na.last=NA).
名单基因和相应的统计,在减少的统计秩序。此功能适用于任何类型的统计,包括log比率,和两样本t-统计量,F统计量。遗漏值将被忽略,在sort(..., na.last=NA)。
用法----------Usage----------
stat.gnames(x, gnames, crit= 50)
参数----------Arguments----------
参数:x
a numeric vector containing the statistics for each gene. Missing values (NAs) are allowed.
数字向量,每个基因的统计信息。遗漏值(NAS)是允许的。
参数:gnames
a character vector containing the gene names.
字符向量的基因名称。
参数:crit
specifies the number of genes to be returned. If crit < 1, the crit*100% genes with the largest x values are listed. If crit >= 1, the crit genes with the largest x values are listed.
指定要返回的基因数量。如果暴击<1时,暴击* 100%x值最大的基因。如果暴击> = 1,x值最大的暴击基因列出。
值----------Value----------
List containing the following components
列表,其中包含以下组件
参数:gnames
gene names sorted in decreasing order of the statistics in x.
为了减少在x的统计排序的基因名称。
参数:t
statistics sorted in decreasing order.
统计递减顺序排序。
作者(S)----------Author(s)----------
Yee Hwa Yang, <a href="mailto:yeehwa@stat.berkeley.edu">yeehwa@stat.berkeley.edu</a> <br>
Sandrine Dudoit, <a href="mailto:sandrine@stat.berkeley.edu">sandrine@stat.berkeley.edu</a>
参见----------See Also----------
order, sort.
order,sort。
举例----------Examples----------
data(swirl)
aveM <- apply(maM(swirl), 1, mean.na)
Gnames <- maGeneTable(swirl)
stat.gnames(abs(aveM), Gnames, crit=10)
stat.gnames(aveM, Gnames, crit=0.01)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|