rxf | R Documentation |
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.
rxf(df1, df2, n = 1L, ncores = 1L)
df1 , df2 |
degrees of freedom. |
n |
number of observations. If |
ncores |
Number of cores for the simulation
|
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
rxode2
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 rxode2 engine with rxSetSeed()
Internally each ID is seeded with a unique number so that the results do not depend on the number of cores used.
f random deviates
## Use threefry engine
rxf(0.5, 0.5, n = 10) # with rxf you have to explicitly state n
rxf(5, 1, n = 10, ncores = 2) # You can parallelize the simulation using openMP
rxf(1, 3)
## This example uses `rxf` directly in the model
rx <- function() {
model({
a <- rxf(2, 2)
})
}
et <- et(1, id = 1:2)
s <- rxSolve(rx, et)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.