Resources

SASŪ High-Performance Analytics Samples

The SAS High-Performance Analytics sample programs and install verification tests can be run only after you edit and submit this file. The file contains site-specific information about your environment so that the procedures can run successfully.

Getting Started Example for PROC HPSAMPLE

/****************************************************************/
/*          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;