############################################################### # # This package provides an interface to the true random number service # provided by the random.org website created by Mads Haahr. The # random.org web service samples atmospheric noise via radio tuned to an # unused broadcasting frequency together with a skew correction algorithm # due to John von Neumann. In its current form, the package offers # functions to retrieve random integer number (with duplicates), randomized # sequences (without duplicates) and raw random bytes. library(random) rn<-randomNumbers(100, 1, 100, 5) rs<-randomSequence(1, 20) rn rs