seed
- Seed set function
x : | Natural (pass by value) |
The number used to seed the random number generator. |
# pick some definitely random number
seed(80797980)
a <- rUniform(1,0.6,1.2)
a
seed(80797980)
a <- rUniform(1,0.6,1.2)
a # this will be the same as above!