rvpois(rv)
rvpois()所属R语言包:rv
Generate Random Vectors from a Poisson Sampling Model
从的泊松取样模型生成随机向量
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Generates random variables from a Poisson sampling model.
从泊松抽样模型生成的随机变量。
用法----------Usage----------
rvpois(n=1, lambda)
参数----------Arguments----------
参数:n
integer: number of variables to generate
整数变量来生成的数量
参数:lambda
a vector of (positive) mean parameters; (may be random)
一个向量的(正)的意思是参数(可能是随机的);
注意----------Note----------
If any of the arguments are random, the resulting simulations may have non-Poisson marginal distributions.
如果任何参数是随机的,导致模拟可能有非泊松边际的分布,。
(作者)----------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----------
x <- rvpois(lambda=10) # A Poisson rv with mean 10[的泊松RV,平均10]
lbd <- rvchisq(1,1) # Some positive rv[一些积极的RV]
y <- rvpois(lambda=lbd) # Not a Poisson rv, although each simulation is a draw from Poisson.[不是一个泊松RV,虽然每个模拟从泊松是一个平局。]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|