• Print  |
  • Feedback  |

Training & Bookstore

Keep in Touch

SAS Press Series
1-800-727-3228
saspress@sas.com

SAS Press» Companion Site


Updates for Cody's Data Cleaning Techniques Using SAS, Second Edition

Page 21

Add TITLE statement to program 1-10 Right before data _null_ as follows:

title "Listing of invalid character values";


Page 142

After program 6-5, page 142 change macro call to:

%check_id(Id=Patno,Dsn_list=one two three)


Page 201

Change in program 10-12 (page 201) (add the : $3. in the input statement as follows)
data add;
   input ID : $3. TimeTV TimeSleep TimeWork TimeOther;
datalines;
001 10 40 40 10
002 20 50 40 5
003 10 . . .
004 0 40 60 0
005 120 10 10 10