Last active
July 13, 2019 18:00
-
-
Save briatte/0b542cadfa76b5cbc2231f1e6106b42c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# change of PRNG in R >= 3.6.0 | |
# use former PRNG | |
RNGkind(sample.kind = "Rounding") | |
# use new/fixed PRNG | |
RNGkind(sample.kind = "default") | |
# see ?Random for details |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment