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.
rxbeta(shape1, shape2, n = 1L, ncores = 1L)
shape1 | non-negative parameters of the Beta distribution. |
---|---|
shape2 | non-negative parameters of the Beta distribution. |
n | number of observations. If |
ncores | Number of cores for the simulation
|
beta random deviates
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.
# \donttest{
## Use threefry engine
rxbeta(0.5, 0.5, n = 10) # with rxbeta you have to explicitly state n
#> [1] 0.29390379 0.59430068 0.66230103 0.57713333 0.45133354 0.86479663
#> [7] 0.94102044 0.15672197 0.03530665 0.98476605
rxbeta(5, 1, n = 10, ncores = 2) # You can parallelize the simulation using openMP
#> [1] 0.9332316 0.9429135 0.9735325 0.8435174 0.8503392 0.8557479 0.8094574
#> [8] 0.9375020 0.9862379 0.9810331
rxbeta(1, 3)
#> [1] 0.1662189
## This example uses `rxbeta` directly in the model
rx <- RxODE({
a <- rxbeta(2, 2)
})
#>
et <- et(1, id = 1:2)
s <- rxSolve(rx, et)
# }