Maxwell(VGAM)
Maxwell()所属R语言包:VGAM
The Maxwell Distribution
麦克斯韦速率分布
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Density, distribution function, quantile function and random generation for the Maxwell distribution.
密度,分布函数,Maxwell分布的分位数函数随机生成。
用法----------Usage----------
dmaxwell(x, a, log = FALSE)
pmaxwell(q, a)
qmaxwell(p, a)
rmaxwell(n, a)
参数----------Arguments----------
参数:x, q
vector of quantiles.
向量的位数。
参数:p
vector of probabilities.
向量的概率。
参数:n
number of observations. A single positive integer.
若干意见。一个正整数。
参数:a
the parameter.
参数。
参数:log
Logical. If log = TRUE then the logarithm of the density is returned.
逻辑。如果log = TRUE然后返回的密度的对数。
Details
详细信息----------Details----------
See maxwell, the VGAM family function for estimating the parameter a by maximum likelihood estimation, for the formula of the probability density function.
见maxwell,的VGAM的家庭功能的最大似然估计的概率密度函数的公式估计的参数a。
值----------Value----------
dmaxwell gives the density, pmaxwell gives the distribution function, qmaxwell gives the quantile function, and rmaxwell generates random deviates.
dmaxwell给出了密度,pmaxwell给出了分布函数,qmaxwell给出了分位数的功能,和rmaxwell随机产生的偏离。
注意----------Note----------
The Maxwell distribution is related to the Rayleigh distribution.
Maxwell分布有关的瑞利分布。
(作者)----------Author(s)----------
T. W. Yee
参考文献----------References----------
A Primer on Statistical Distributions. Hoboken, New Jersey: Wiley.
参见----------See Also----------
maxwell, Rayleigh, rayleigh.
maxwell,Rayleigh,rayleigh。
实例----------Examples----------
## Not run: a <- 3; x <- seq(-0.5, 3, length = 100)[#不运行: - 3; <X < - 以下(-0.5,3,长度= 100)]
plot(x, dmaxwell(x, a = a), type = "l", col = "blue", las = 1, ylab = "",
main = "Blue is density, orange is cumulative distribution function",
sub = "Purple lines are the 10,20,...,90 percentiles")
abline(h = 0, col = "blue", lty = 2)
lines(x, pmaxwell(x, a = a), type = "l", col = "orange")
probs <- seq(0.1, 0.9, by = 0.1)
Q <- qmaxwell(probs, a = a)
lines(Q, dmaxwell(Q, a), col = "purple", lty = 3, type = "h")
lines(Q, pmaxwell(Q, a), col = "purple", lty = 3, type = "h")
abline(h = probs, col = "purple", lty = 3)
max(abs(pmaxwell(Q, a) - probs)) # Should be zero[应该是零]
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|