rvbern(rv)
rvbern()所属R语言包:rv
Generate a Random Vector from a Bernoulli Sampling Model
从的伯努利采样模型生成一个随机向量
译者:生物统计家园网 机器人LoveR
描述----------Description----------
rvbern generates a random vector where each simulation comes from a Bernoulli sampling distribution.
rvbern生成一个随机向量,其中每个模拟来自伯努利抽样分布。
用法----------Usage----------
rvbern(n=1, prob, logical=FALSE)
参数----------Arguments----------
参数:n
number of random scalars to draw
随机标量绘制
参数:prob
probability of “success”; may be a random vector itself
的“成功”的概率可以是随机向量本身
参数:logical
logical; return a logical random variable instead
逻辑返回一个逻辑随机变量,而不是
Details
详细信息----------Details----------
rvbern is a special case of rvbinom with the argument size=1.
rvbern是一个特殊的情况下,rvbinom参数大小= 1。
If logical is TRUE, the function returns a logical random variable which has TRUE for 1, FALSE for 0. (The printed summary of this object is slightly different from a regular continuous numeric random variable.)
如果logicalTRUE,该函数返回一个逻辑随机变量,有TRUE,FALSE为0 1。 (打印总结的这个对象是从一个普通的连续数值的随机变量略有不同。)
值----------Value----------
A random vector (an rv object) of length n.
随机向量的长度n(RV对象)。
注意----------Note----------
The resulting vector will not be independent and identically distributed Bernoulli unless prob is a fixed number.
产生的向量不会是独立同分布的伯努利除非prob是一个固定的数字。
(作者)----------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----------
rvbern(2, prob=0.5)
rvbinom(2, size=1, prob=0.5) # Equivalent[当量]
print(rvbern(1, 0.5, logical=TRUE)) # won't show the quantiles[将不会显示位数]
print(as.logical(rvbern(1, 0.5))) # equivalent[当量]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|