set_seed | R Documentation |
The change in how set.seed
works in R 3.6 prompted the creation of this
R version agnostic replacement to get unit test code to work on multiple
versions of R in a CICD test build.
set_seed(seed = 1)
seed |
argument to |
It seems RNGkind(sample.kind="Rounding")
does not work prior to
version 3.6 so I resorted to using version dependent construction of the
argument list to set.seed() in do.call().#'
NULL, invisibly.
set_seed(1)
rnorm(5)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.