Random digit table
By Jude Wallis · Updated
A random digit table is a printed list in which every position is equally likely to hold any digit 0 through 9, independently of every other position.
Two properties define the table: each position is equally likely to hold any of the ten digits, and the positions are independent of one another. Everything about using one follows from that. Three things have to be fixed before you read anything: labels that all carry the same number of digits, a stated starting point, and a stated skip rule. Equal label length is what keeps every individual equally likely.
Three students are wanted from a class of 40. Label them 01 to 40, read two digits at a time, skip any group above 40 or equal to 00, and skip any label already taken. Starting at a line reading 9 2 3 5 2 3 3 5 1 1, the groups are 92, discarded as out of range, then 35 and 23, both taken, then 35 again, discarded as a repeat, then 11, taken. The sample is students 11, 23 and 35. Expect heavy discarding: only 40 of the 100 two-digit groups are usable here, so 60 percent of what you read is thrown away.
"Label them 1 to 40 and read one digit at a time" cannot work, because a single digit only ever produces labels 0 through 9 and students 10 through 40 have no chance of selection at all. Patching it by reading a second digit only when you feel you need one is worse, since the chance of selection then depends on the label in a way that is hard even to write down. Picking the starting line after glancing at the digits, or stopping early because the sample already looks representative, break the mechanism the same way.
The skip-repeats rule is what makes this sampling without replacement. Drop that rule and repeated labels are kept, which is a different design with a different set of formulas behind it.
Topic 1.11 describes carrying out a simple random sample with a random number generator or numbered slips of paper. The table is the printed version of the same chance device, and random digit table vs simulation sets the two mechanisms against each other.
Where this comes up
More collecting data and study design terms, or browse the full statistics glossary.