Online File
How to use this page
Rick Aster: Professional SAS Programming Shortcuts: Contents
DATA WORK.SAMPLE (DROP=I); DO I = 1 TO 1000 MIN NOBS; POINT = FLOOR(RANUNI(5)*NOBS + 1); SET WORK.COMPLETE POINT=POINT NOBS=NOBS; OUTPUT; END; STOP; RUN;