I understand from here: Random number-Set.seed(N) in R
that "The seed number you choose is the starting point used in the generation of a sequence of random numbers..."
But, I'm not so sure if there's a meaning to the gaps between the seed
integers when I'm trying (for example) to produce 3 different samples from the same data set. In other words, is there a difference in the "quality" of the first 3 samples (A group...) compared to the second 3 samples (B group...) in the following code:
A group:
set.seed(1)
sample(1:10000, size=100)
set.seed(2)
sample(1:10000, size=100)
set.seed(3)
sample(1:10000, size=100)
B group:
set.seed(195)
sample(1:10000, size=100)
set.seed(278)
sample(1:10000, size=100)
set.seed(315)
sample(1:10000, size=100)
Thank you in advance!