Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 41
Program
Sampling with replacement


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;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page