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


SAS Code for INPUT and PUT Functions
Bruce Ratner, PhD

/*** In my beginning years, I always stumbled with two SAS functions, INPUT and PUT.
And, I always misplaced my notes about these zing-zang cousins.
I have created this page for all my SAS colleagues, beginners and others, which include me.
The following code is taken from SAS Global Forum 2012 *** /

input-put
/**** INPUT function ***/ 

data _null_;
char_date   = "9/15/2004";
char_num  = "123";
SAS_Date  = input(char_date, mmddyy10.);
Number     = input(char_num,10.);
put SAS_Date = Number =; /* see SAS log */
run;

/**** PUT function***/

data _null_;
SAS_Date    = 1;
Number       = 1234;
SS_num      = 123456789;
Char_Date   = put(SAS_Date,mmddyy10.);
Money        = put(Number, dollar8.2);
SS_char      = put(SS_num,ssn.);
put Char_date = Money =  SS_Char=; /* see SAS log */ 
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.