|
Data defines the model by dint of genetic programming, producing the best decile table.
|
|
SAS Code for Renaming A Variable's Case Bruce Ratner, PhD. |
|

data rename_cases; input abc DEF; cards; 1 2 3 4 ; run; proc contents data=rename_cases; title1' orginal '; run;
data rename_cases; set rename_cases (rename=(abc=x DEF=y)); ABC=x; def=y; drop x y; run; proc contents data=rename_cases; title1' renamed '; 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. |
|
|