Simplex (VGAM)
Simplex ()所属R语言包:VGAM
Simplex Distribution
单纯形分布
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Density function, and random generation for the simplex distribution.
单纯形分布的密度函数,随机生成。
用法----------Usage----------
dsimplex(x, mu = 0.5, dispersion = 1, log = FALSE)
rsimplex(n, mu = 0.5, dispersion = 1)
参数----------Arguments----------
参数:x
Vector of quantiles. The support of the distribution is the interval (0,1).
向量的位数。支持的时间间隔的分布是(0,1)。
参数:mu, dispersion
Mean and dispersion parameters. The former lies in the interval (0,1) and the latter is positive.
平均和分散参数。前者在于在区间(0,1)和后者是正。
参数:n, log
Same usage as runif.
同样的用法作为runif。
Details
详细信息----------Details----------
The VGAM family function simplex fits this model; see that online help for more information. For rsimplex() the rejection method is used; it may be very slow if the density is highly peaked, and will fail if the density asymptotes at the boundary.
VGAM家庭功能simplex适合这个模型的详细信息,在线帮助。对于rsimplex()的抑制方法,可能会很慢,如果密度高达到顶峰,并会失败,如果密度渐近线的交界处。
值----------Value----------
dsimplex(x) gives the density function, rsimplex(n) gives n random variates.
dsimplex(x)给出了密度函数,rsimplex(n)给n随机变数。
(作者)----------Author(s)----------
T. W. Yee
参见----------See Also----------
simplex.
simplex。
实例----------Examples----------
sigma = c(4, 2, 1) # Dispersion parameter[分散参数]
mymu = c(.1, .5, .7); xxx = seq(0, 1, len = 501)
## Not run: par(mfrow=c(3,3)) # Figure 2.1 of Song (2007)[#不运行:PAR(mfrow = C(3,3))图2.1的歌“(2007年)]
for(iii in 1:3)
for(jjj in 1:3) {
plot(xxx, dsimplex(xxx, mymu[jjj], sigma[iii]),
type = "l", col = "blue", xlab = "", ylab = "", main =
paste("mu = ", mymu[jjj], ", sigma = ", sigma[iii], sep = "")) }
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|