Data defines the model by dint of genetic programming, producing the best decile table.


Creating a SAS8 Dataset from a SAS9 Dataset
Bruce Ratner, Ph.D.

METHOD #1
libname v9          'c:/pathname-for-v9-file';  /*point to the v9 library*/
libname new v8   'c:/pathname-for-v8-file';  /* you can point to the v9 library, unless the v9 dataset has long names*/
options compress=NO;

data new.v8-filename;
set   v9.v9-filename;
run;

METHOD #2
libname v9             'c:\SAS-Data-Library';    /*point to the v9 library*/
libname new v8      '\SAS-Data-Library';      /*should not be the same as above*/
options compress=NO;
proc copy in=v9 out=new;
select dsname;
run;

For more information about this article, call Bruce Ratner at 516.791.3544 or 1 800 DM STAT-1; or e-mail at br@dmstat1.com.
Sign-up for a free GenIQ webcast: Click here.