/****************************************************************/ /* S A S S A M P L E L I B R A R Y */ /* */ /* NAME: hpsame02 */ /* TITLE: Getting Started Example for PROC HPSAMPLE */ /* PRODUCT: HPA */ /* SYSTEM: */ /* KEYS: */ /* PROCS: HPSAMPLE */ /* DATA: */ /* */ /* SUPPORT: Ye Liu */ /* REF: */ /* MISC:Example-Running with Client Data on the SAS appliance*/ /****************************************************************/ /*Perform the computation on the SAS appliance using 2 nodes*/ option set=GRIDHOST="&GRIDHOST"; option set=GRIDINSTALLLOC="&GRIDINSTALLLOC"; proc hpsample data=sampsio.hmeq out=out2 samppct=10 seed=13579 partition; var loan value delinq derog; class job reason; target job; performance nodes=2; run; proc print data=out2(obs=15); run;