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


SAS Code for Finding Frequent Variables Across Files
Bruce Ratner, Ph.D.
Live chat by Boldchat
Live chat by Boldchat


var_freq

data
var_freq;
input @1 file1 $5. @6 file2 $5. @10 file3 $5.;
cards;
var1 var2 var3
var4 var4 var5
var6 var6 var6
;
run;

proc print data=var_freq;
run;

data var_freq;
set var_freq;
row+1;
run;

proc print data=var_freq;
run;

proc transpose OUT=trans;
var file1 file2 file3;
by row;

proc print data=trans;
run
;

proc freq data=trans order=freq;
tables col1;
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.