Selecting a Random Sample of Observations


/ Published in: SAS
Save to your folder(s)

You can use the POINT option of the SET statement to efficiently select a random sample of observations from a SAS data set. In addiiton to any statistical reasons for drawing a random sample, the technique is also useful to create test data from a large file. The program shown here efficiently samples a large data set.
It reads only the observations that have been selected using the POINT option.
You assign a variable that is the desired sample size. The example here selects a 10% sample. You can also assign a fixed value (e.g., 100).
The DO loop is iterated for each observation
The uniform function is compared to the percent of observations still to be selected
If the observation is selected, it is read and output and the number needed is decremented by 1
Regardless the number of observations left is reduced by 1
The STOP statement is very important as without it, the DATA step will enter an infinite loop.
This technique works by modifying the threshold as observations are read and selected. Every observation has the same probability of being selected so the technique is statistically valid (If you are a statistician, you probably know this. If not, the analogy of drawing straws is the logic behind this.)


Copy this code and paste it in your HTML
  1. data subset;
  2. SampleSize = round(.1*numberObs,1);
  3. Left = numberObs;
  4. do i = 1 to numberObs;
  5. set sashelp.shoes point = i nobs = numberObs;
  6. if uniform(0) le SampleSize/Left then
  7. do; /* select the observations */
  8. SampleSize + (-1); /* decrement needed by 1 */
  9. output;
  10. end; /* select the observations */
  11. Left +(-1); /* decrement remaining obs by 1 */
  12. end;
  13. stop;
  14. run;

URL: http://www.sascommunity.org/wiki/Tip_of_the_Day:February_15

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.