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: hpsame01 */
/* TITLE: Getting Started Example for PROC HPSAMPLE */
/* PRODUCT: HPA */
/* SYSTEM: */
/* KEYS: */
/* PROCS: HPSAMPLE */
/* DATA: */
/* */
/* SUPPORT: Ye Liu */
/* REF: */
/* MISC: Example -Running PROC HPSAMPLE on the Client */
/****************************************************************/
/*sampsio is a libname for a data source on the client.*/
proc hpsample data=sampsio.hmeq out=out1 sampobs=20 seed=13579;
class job reason;
var loan value delinq derog;
run;
proc print data=out1;
run;