rowQ(Biobase)
rowQ()所属R语言包:Biobase
A function to compute empirical row quantiles.
一个函数来计算经验排位数。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function computes the requested quantile for each row of a matrix, or of an ExpressionSet.
此函数计算矩阵的每一行要求的分量,或ExpressionSet。
用法----------Usage----------
rowQ(imat, which)
rowMax(imat)
rowMin(imat)
参数----------Arguments----------
参数:imat
Either a matrix or an ExpressionSet.
无论是矩阵或ExpressionSet的。
参数:which
An integer indicating which order statistic should be returned.
一个整数,指示应返回的顺序统计。
Details
详情----------Details----------
rowMax, rowMin and rowMedians simply call rowQ with the appropriate argument set.
rowMax,rowMin和rowMedians只需拨打rowQ用适当的参数设置。
The argument which takes values between 1, for the minimum per row, and ncol(imat), for the maximum per row.
参数which之间需要1值,每行最低,和ncol(imat),每行的最大。
值----------Value----------
A vector of length equal to the number of rows of the input matrix containing the requested quantiles.
一个向量的长度等于输入矩阵的包含请求位数的行的数量。
作者(S)----------Author(s)----------
R. Gentleman
参见----------See Also----------
rowMedians. rowMeans() in colSums().
rowMedians。 rowMeans()colSums()。
举例----------Examples----------
data(sample.ExpressionSet)
rowMin(sample.ExpressionSet)
rowQ(sample.ExpressionSet, 4)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|