rdiric(VGAM)
rdiric()所属R语言包:VGAM
The Dirichlet distribution
Dirichlet分布
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Generates Dirichlet random variates.
生成的Dirichlet随机变数。
用法----------Usage----------
rdiric(n, shape, dimension = NULL)
参数----------Arguments----------
参数:n
number of observations.
若干意见。
参数:shape
the shape parameters. These must be positive. If dimension is specifed, values are recycled if necessary to length dimension.
的形状参数。这些必须是积极的。如果dimension是具体确定,如有必要,回收长度dimension。
参数:dimension
the dimension of the distribution. If dimension is not numeric then it is taken to be length(shape).
的尺寸的分布。 dimension如果是不是数字,那么它采取的是length(shape)。
Details
详细信息----------Details----------
This function is based on a relationship between the gamma and Dirichlet distribution. Random gamma variates are generated, and then Dirichlet random variates are formed from these.
此功能是基于伽马和Dirichlet分布之间的关系的。随机伽玛变元的生成,并从这些形成然后狄利克雷随机变数。
值----------Value----------
A n by dimension matrix of Dirichlet random variates. Each element is positive, and each row will sum to unity.
Andimension矩阵的Dirichlet随机变数。每个元素都是积极的,将总结各行统一。
(作者)----------Author(s)----------
Thomas W. Yee
参考文献----------References----------
Mathematical and Statistical Methods for Genetic Analysis, 2nd ed. New York: Springer-Verlag.
参见----------See Also----------
dirichlet is a VGAM family function for fitting a Dirichlet distribution to data.
dirichlet是VGAM家庭功能的装修Dirichlet分布的数据。
实例----------Examples----------
y = rdiric(n=1000, shape=c(3, 1, 4))
fit = vglm(y ~ 1, dirichlet, trace = TRUE, crit="c")
Coef(fit)
coef(fit, matrix=TRUE)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|