pquantile(WGCNA)
pquantile()所属R语言包:WGCNA
Parallel quantile, median, mean
并行位数,中位数,平均
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Calculation of “parallel” quantiles, medians, and means, across given arguments.
“水货”的位数,位数和手段,整个给定的参数的计算。
用法----------Usage----------
pquantile(prob, ...)
pmedian(...)
pmean(...)
参数----------Arguments----------
参数:prob
A number or vector of probabilities at which to calculate the quantile. See quantile.
一个数字或矢量的概率要计算的位数。见quantile。
参数:...
Numeric arguments. All arguments must have the same dimensions. See details.
数字参数。所有参数都必须具有相同的尺寸。查看详细信息。
Details
详细信息----------Details----------
Given the argumens, say x,y,z, of equal dimensions, the pquantile calculates and returns the quantile of the first components of x,y,z, then the second components, etc. Similarly, pmedian and pmean calculate the median and mean, respectively.
鉴于argumens,说的x,y和z,相等的尺寸,pquantile计算并返回的x,y和z,则所述第二部件等的第一个部件的位数同样,pmedian 和pmean计算中位数和均值分别。
值----------Value----------
A vector or array containing the quantiles, medians, or means. The dimensions are determined by the dimensions of the input arguments and whether the prob input is scalar or a vector. If any of the input variables have dimnames, the first non-NULL dimnames are copied into the output.
一个向量或数组,其中包含的位数,中位数,或手段。尺寸是由尺寸的输入参数,以及是否prob输入是标量或矢量。如果任何的输入变量有dimnames,第一个非NULL dimnames,被复制到输出。
(作者)----------Author(s)----------
Peter Langfelder and Steve Horvath
参见----------See Also----------
pmin and pmax for analogous functions for minimum and maximum,
pmin和pmax最小和最大的类似的功能,
quantile, median, mean for the underlying statistics.
quantile,median,mean的相关统计。
实例----------Examples----------
# Generate 2 simple matrices[生成2个简单的矩阵]
a = matrix(c(1:12), 3, 4);
b = a+ 1;
c = a + 2;
# Set the colnames on matrix a[设置矩阵A的列名]
colnames(a) = spaste("col_", c(1:4));
# Example use[例如使用]
pquantile(prob = 0.5, a, b, c)
pquantile(prob = c(0, 0.5, 1), a,b, c);
pmean(a,b,c)
pmedian(a,b,c)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|