zscore(limma)
zscore()所属R语言包:limma
Z-score Equivalents
Z-score模型等同
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Compute z-score equivalents of gamma or t-distribution random deviates.
计算Z得分等值的伽玛或t分布的随机偏离。
用法----------Usage----------
zscoreGamma(q, shape, rate = 1, scale = 1/rate)
zscoreT(x, df)
tZscore(x, df)
参数----------Arguments----------
参数:q, x
numeric vector or matrix giving deviates of a random variable
给一个随机变量偏离的数值向量或矩阵
参数:shape
gamma shape parameter (>0)
伽玛形状参数(0)
参数:rate
gamma rate parameter (>0)
伽马率参数(> 0)
参数:scale
gamma scale parameter (>0)
伽玛尺度参数(0)
参数:df
degrees of freedom (>0 for zscoreT or >=1 for tZscore)
自由度(zscoreT或> = 1> 0tZscore)
Details
详情----------Details----------
These functions compute the standard normal deviates which have the same quantiles as the given values in the specified distribution. For example, if z <- zscoreT(x,df=df) then pnorm(z) equals pt(x,df=df). tZscore is the inverse of zscoreT.
这些函数的计算标准有指定的分布在给定的值相同位数的正常偏离。例如,如果z <- zscoreT(x,df=df)然后pnorm(z)等于pt(x,df=df)的。 tZscorezscoreT的逆。
Care is taken to do the computations accurately in both tails of the distributions.
护理是采取在两个分布尾巴做精确的计算。
值----------Value----------
Numeric vector giving equivalent deviates from a standard normal distribution (zscoreGamma and zscoreT) or deviates from a t-distribution (tZscore).
数字矢量给予相当于从一个标准的正态分布(zscoreGamma和zscoreT)或从t分布(tZscore)偏离偏离。
作者(S)----------Author(s)----------
Gordon Smyth
参见----------See Also----------
qnorm, pgamma, pt in the stats package.
qnorm,pgamma,pt在统计包。
举例----------Examples----------
zscoreGamma(1, shape=1, scale=1)
zscoreT(2, df=3)
tZscore(2, df=3)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|