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