Care should be taken with this method not to encounter the birthday problem, described https://www.johndcook.com/blog/2016/01/29/random-number-generator-seed-mistakes/. Since the sitmo threefry, this currently generates one random deviate from the uniform distribution to seed the engine threefry and then run the code.

rxpois(lambda, n = 1L, ncores = 1L)

Arguments

lambda

vector of (non-negative) means.

n

number of random values to return.

ncores

Number of cores for the simulation

rxnorm simulates using the threefry sitmo generator; rxnormV uses the vandercorput generator

Value

poission random number deviates

Details

Therefore, a simple call to the random number generated followed by a second call to random number generated may have identical seeds. As the number of random number generator calls are increased the probability that the birthday problem will increase.

The key to avoid this problem is to either run all simulations in the RxODE environment once (therefore one seed or series of seeds for the whole simulation), pre-generate all random variables used for the simulation, or seed the RxODE engine with rxSetSeed()

Also care should be made that the computer you will be running on can run the same number of cores as you are running so they can reproduce your results.

Examples

# \donttest{
## Use threefry engine

rxpois(lambda = 3, n = 10) # with rxpois you have to explicitly state n
#>  [1] 1 5 1 1 2 2 5 3 3 1
rxpois(lambda = 3, n = 10, ncores = 2) # You can parallelize the simulation using openMP
#>  [1] 4 3 8 1 2 2 1 5 3 1

rxpois(4) ## The first arguments are the lambda parameter
#> [1] 3


## This example uses `rxpois` directly in the model

rx <- RxODE({
  a <- rxpois(3)
})
#>  

et <- et(1, id = 1:2)

s <- rxSolve(rx, et)
# }