Rayleigh(VGAM)
Rayleigh()所属R语言包:VGAM
The Rayleigh Distribution
瑞利分布
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Density, distribution function, quantile function and random generation for the Rayleigh distribution with parameter a.
密度,分布函数,参数a的位数函数和随机生成的瑞利分布。
用法----------Usage----------
drayleigh(x, scale = 1, log = FALSE)
prayleigh(q, scale = 1)
qrayleigh(p, scale = 1)
rrayleigh(n, scale = 1)
参数----------Arguments----------
参数:x, q
vector of quantiles.
向量的位数。
参数:p
vector of probabilities.
向量的概率。
参数:n
number of observations. Fed into runif.
若干意见。送入runif。
参数:scale
the scale parameter b.
尺度参数b。
参数:log
Logical. If log = TRUE then the logarithm of the density is returned.
逻辑。如果log = TRUE然后返回的密度的对数。
Details
详细信息----------Details----------
See rayleigh, the VGAM family function for estimating the scale parameter b by maximum likelihood estimation, for the formula of the probability density function and range restrictions on the parameter b.
rayleigh,VGAM家庭功能的最大似然估计的概率密度函数的公式和范围限制的参数b估计尺度参数b。
值----------Value----------
drayleigh gives the density, prayleigh gives the distribution function, qrayleigh gives the quantile function, and rrayleigh generates random deviates.
drayleigh给出了密度,prayleigh给出了分布函数,qrayleigh给出了分位数的功能,和rrayleigh随机产生的偏离。
注意----------Note----------
The Rayleigh distribution is related to the Maxwell distribution.
瑞利分布有关的Maxwell分布。
(作者)----------Author(s)----------
T. W. Yee
参考文献----------References----------
Statistical Distributions, New York: Wiley-Interscience, Third edition.
参见----------See Also----------
rayleigh, maxwell.
rayleigh,maxwell。
实例----------Examples----------
## Not run: Scale = 2; x = seq(-1, 8, by = 0.1)[#不运行:规模= 2,X = SEQ(-1,8 = 0.1)]
plot(x, drayleigh(x, scale = Scale), type = "l", ylim = c(0,1),
las = 1, ylab = "",
main = "Rayleigh density divided into 10 equal areas; orange = cdf")
abline(h = 0, col = "blue", lty = 2)
qq = qrayleigh(seq(0.1, 0.9, by = 0.1), scale = Scale)
lines(qq, drayleigh(qq, scale = Scale), col = "purple", lty = 3, type = "h")
lines(x, prayleigh(x, scale = Scale), col = "orange")
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|