* Sampling Without Replacement SET RANFIX SAMPLE 1 2000 GENR X=TIME(0) * Generate a set of random numbers GENR RAN=UNI(1) * Sort the data using RAN as the sort variable. SORT RAN X * Select 300 observations from the original 2000 observations. SAMPLE 1 300 FORMAT(10F8.0) PRINT X / FORMAT STAT X STOP