Generates random variables from a Poisson sampling model.
rvpois(n = 1, lambda)
integer: number of variables to generate
a vector of (positive) mean parameters; (may be random)
If any of the arguments are random, the resulting simulations may have non-Poisson marginal distributions.
Kerman, J. and Gelman, A. (2007). Manipulating and Summarizing Posterior Simulations Using Random Variable Objects. Statistics and Computing 17:3, 235-244.
See also vignette("rv")
.
x <- rvpois(lambda=10) # A Poisson rv with mean 10
lbd <- rvchisq(1,1) # Some positive rv
y <- rvpois(lambda=lbd) # Not a Poisson rv, although each simulation is a draw from Poisson.