Hello,
I have a question about changing random seed for every round in the loop.
Say I have a loop:
do i=1 to 1000;
...then in one of the following steps I need to use proc surveyselect which requires me to specify a random seed (e.g., seed=123).
because I need to get different random samples, I want different seed for different i (e.g., seed=123 for i=1, seed=124 for i=2, seed=125 for i=3...).
It seems to me a positive integer should follow the seed= statement. Is there anyway to achieve the above mentioned procedure?
Thank you very much for your help!
sliu