Mar 122010
Stephanie asked in 511 today if we were able to get the random seed which was set by set.seed() but we were only given the random numbers (without knowing the seed). This kind of “hacker” questions sound interesting. One dirty solution should be the brute-force method, e.g:
# x: the random vector;
# FUN: the function that generates random numbers with the first argument
# being the length of random numbers
# seed: candidate seeds to be tried one by one
# ...: other arguments to be passed to FUN
find.seed = function(x, FUN = rnorm, seed = 0:10000, ...) {
res = NULL
for (i in seed) {
set.seed(i)
rx = FUN(length(x), ...)
# all() can be changed to all.equal() to obtain a rough solution
# allowing a little bit numeric errors
if (all(x == rx)) {
res = i
break
}
}
res
}
Recent Comments