SAS Learning Post

Technical tips and tricks from SAS instructors, authors and other SAS experts.
Learn SAS
Jim Simon 5
Random Sampling: What's Efficient?

Suppose you wish to select a random sample from a large SAS dataset.  No problem. The PROC SURVEYSELECT step below randomly selects a 2 percent sample: proc surveyselect data=large out=sample method=srs /* simple random sample */ n=1000000; /* sample size */ run; Do you have a SAS/STAT license?   If not,

1 79 80 81 82 83 135