How can I use the Modulo operator to get a sample?
If I have a set of IDs that are just random numbers, and I want a 1% sample, I know I can do 'random_id % 101 = 0'. Does this mean 'random_id % 11 = 0' is a 10% sample?
|
It's not random if you are selecting every nth element. |
|||||||||
|
101and not100? There are 101 possibilities forN % 101- from zero to 100, inclusive. – dasblinkenlight Dec 21 '12 at 3:04