1 The SAS System 14:33 Monday, September 19, 2005 NOTE: Copyright (c) 1999-2001 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software Release 8.2 (TS2M0) Licensed to HARVARD SCHOOL OF PUBLIC HEALTH-INSTRUCTIONAL COMP, Site 0001177014. NOTE: This session is executing on the SunOS 5.9 platform. This message is contained in the SAS news file, and is presented upon initialization. Edit the files "news" in the "misc/base" directory to display site-specific news and information in the program log. The command line option "-nonews" will prevent this display. ---------------------------------------------------------- NOTE: SAS initialization used: real time 0.15 seconds cpu time 0.06 seconds 1 2 *options obs=100; 3 options nocenter; 4 *options compress=yes; 5 *Choose compress=yes to save space ; 6 *Choose compress=no if converting to another package using transfer software ; 7 *options pagesize=59 linesize=72; 8 9 /*------------------------------------------------------------------------------------*/ 10 11 12 libname library '~/bulk'; NOTE: Directory for library LIBRARY contains files of mixed engine types. NOTE: Libref LIBRARY was successfully assigned as follows: Engine: V8 Physical Name: /homes/nber/jroth/bulk 13 14 filename raw pipe "unzip -p /homes/data/sipp/1984/sipp84fp.zip "; 15 16 data library.sip84fp; 17 18 missing A; 19 infile raw lrecl = 20000 missover ; 20 INPUT 21 22 @1 SUSEQNUM $6. 23 @7 ROT 1. 24 @8 SU_ID $9. 25 @17 PP_ENTRY $2. 26 @19 PP_PNUM $3. 27 @1228 AGE_01 2. 28 @1230 AGE_02 2. 29 @232 LGTKEY01 3. 30 ; 31 NOTE: The infile RAW is: Pipe command="unzip -p /homes/data/sipp/1984/sipp84fp.zip " 2 The SAS System 14:33 Monday, September 19, 2005 NOTE: 64503 records were read from the infile RAW. The minimum record length was 10760. The maximum record length was 10760. NOTE: The data set LIBRARY.SIP84FP has 64503 observations and 8 variables. NOTE: DATA statement used: real time 2:57.95 cpu time 2:22.90 32 proc print data=library.sip84fp (obs=6); 33 NOTE: There were 6 observations read from the data set LIBRARY.SIP84FP. NOTE: The PROCEDURE PRINT printed page 1. NOTE: PROCEDURE PRINT used: real time 0.04 seconds cpu time 0.00 seconds 34 proc sort data = library.sip84fp ; 35 by su_id pp_entry pp_pnum ; NOTE: There were 64503 observations read from the data set LIBRARY.SIP84FP. NOTE: The data set LIBRARY.SIP84FP has 64503 observations and 8 variables. NOTE: PROCEDURE SORT used: real time 0.94 seconds cpu time 0.48 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 2:59.32 cpu time 2:23.48