py_set_seed | R Documentation |
Set various random seeds required to ensure reproducible results. The
provided seed
value will establish a new random seed for Python and NumPy,
and will also (by default) disable hash randomization.
py_set_seed(seed, disable_hash_randomization = TRUE)
seed |
A single value, interpreted as an integer |
disable_hash_randomization |
Disable hash randomization, which is another common source of variable results. See https://docs.python.org/3/using/cmdline.html#envvar-PYTHONHASHSEED |
This function does not set the R random seed, for that you
should call set.seed()
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.