rvbinom(rv)
rvbinom()所属R语言包:rv
Generate Random Variables from a Binomial Sampling Model
生成随机变量的二项式抽样模型
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Generates a random vector from a binomial sampling model.
生成一个随机向量,二项式抽样模型。
用法----------Usage----------
rvbinom(n=1, size, prob)
参数----------Arguments----------
参数:n
integer, number of random variables to generate
整数,随机变量的数目,以产生
参数:size
integer or integer-valued rv: the number of trials (size of each sample)
整数或整数的值随机变量:试验的数量(每个样本的大小)
参数:prob
prior probability of success of each trial (may be constant or an rv object)
之前每次试验成功的概率(可能是恒定的或RV对象的)
Details
详细信息----------Details----------
rvbinom generates a random vector with given length, the distribution for size and the distribution for the probability of success.
rvbinom产生一个具有给定长度,成功的概率的大小及分布的分布的随机向量。
值----------Value----------
An rv object.
RV对象。
(作者)----------Author(s)----------
Jouni Kerman
<a href="mailto:jouni@kerman.com">jouni@kerman.com</a>
参考文献----------References----------
Posterior Simulations Using Random Variable Objects. Statistics and Computing 17:3, 235-244.
实例----------Examples----------
s <- 1+rvpois(1,lambda=3) # A prior distribution on the 'size' parameter.[上的“大小”参数的先验分布。]
rvbinom(1, size=s, prob=0.5) # The 'size' is random.[“大小”是随机的。]
p <- rvbinom(1, 10, prob=0.5)/10 # Prior probability of success.[在此之前的成功概率。]
rvbinom(1, size=10, prob=p) # Now the probability is random.[立即的概率是随机的。]
rvbinom(1, size=s, prob=p) # Both the size and the probability are random.[的大小和的概率是随机的。]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|