1 The SAS System 22:01 Tuesday, October 28, 2003 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.8 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.36 seconds cpu time 0.10 seconds 1 2 options nocenter; 3 libname library './'; NOTE: Libref LIBRARY was successfully assigned as follows: Engine: V6 Physical Name: /disk/nber10/SCCS/sipp/1996 4 5 6 filename raw pipe "unzip -p /homes/data/sipp/1996/sipp96l12.zip "; 7 data temp; 8 9 missing A; 10 infile raw lrecl = 20000 missover ; 11 * To read in uncompressed file, uncomment INFILE & comment filename & infile lines; 12 * On a PC, you may need to change the direction of the slashes as in C:\; 13 *INFILE '/homes/data/sipp/1996/sipp96l12.raw' LRECL=8000 PAD END=EOF; 14 15 16 17 INPUT 18 19 @26 RHCALMN 2. 20 @28 RHCALYR 4. 21 ; 22 NOTE: The infile RAW is: Pipe command="unzip -p /homes/data/sipp/1996/sipp96l12.zip " NOTE: 292783 records were read from the infile RAW. The minimum record length was 2192. The maximum record length was 2192. NOTE: The data set WORK.TEMP has 292783 observations and 2 variables. NOTE: DATA statement used: real time 1:23.41 cpu time 1:05.54 23 proc freq data=temp; 2 The SAS System 22:01 Tuesday, October 28, 2003 24 tables rhcalmn rhcalyr; NOTE: There were 292783 observations read from the data set WORK.TEMP. NOTE: The PROCEDURE FREQ printed page 1. NOTE: PROCEDURE FREQ used: real time 1.12 seconds cpu time 0.41 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 1:25.09 cpu time 1:06.05