Rice(VGAM)
Rice()所属R语言包:VGAM
The Rice Distribution
派米
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Density and random generation for the Rician distribution.
莱斯分布的密度和随机生成的。
用法----------Usage----------
drice(x, vee, sigma, log=FALSE)
rrice(n, vee, sigma)
参数----------Arguments----------
参数:x
vector of quantiles.
向量的位数。
参数:n
number of observations. Must be a positive integer of length 1.
若干意见。必须是一个长度为1的正整数。
参数:vee, sigma
See riceff.
见riceff。
参数:log
Logical. If log=TRUE then the logarithm of the density is returned.
逻辑。如果log=TRUE然后返回的密度的对数。
Details
详细信息----------Details----------
See riceff, the VGAM family function for estimating the two parameters, for the formula of the probability density function and other details.
riceff,的VGAM的家庭功能的估计两个参数,公式的概率密度函数和其他细节。
值----------Value----------
drice gives the density, rrice generates random deviates.
drice给出了密度,rrice随机产生的偏离。
(作者)----------Author(s)----------
T. W. Yee
参见----------See Also----------
riceff.
riceff。
实例----------Examples----------
## Not run: [#不运行:]
x = seq(0.01, 7, len=201)
plot(x, drice(x, vee=0, sigma=1), type="n", las=1,, ylab="",
main="Density of Rice distribution for various values of v")
sigma = 1; vee = c(0,0.5,1,2,4)
for(ii in 1:length(vee)) lines(x, drice(x, vee[ii], sigma), col=ii)
legend(x=5, y=0.6, legend=as.character(vee),
col=1:length(vee), lty=1)
## End(Not run)[#(不执行)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|