1 The SAS System 16:42 Monday, December 2, 2002 NOTE: Copyright (c) 1999-2001 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software Release 8.2 (TS2M0) Licensed to UNC-CHAPEL HILL-SYSTEMWIDE-T/R, Site 0039466002. NOTE: This session is executing on the WIN_PRO platform. NOTE: SAS initialization used: real time 0.34 seconds cpu time 0.34 seconds 1 TITLE1 "P0201.SAS--PVC data"; 2 3 FILENAME IN01 "..\DATA\P0201.DAT"; 4 DATA ONE; 5 INFILE IN01; 6 INPUT PVC_A PVC_B PVC_C; 7 LABEL PVC_A="PVC/hr Drug A" 8 PVC_B="PVC/hr Drug B" 9 PVC_C="PVC/hr Drug C"; 10 NOTE: The infile IN01 is: File Name=D:\kem\teaching\bios262\2002\tests\DATA\P0201.DAT, RECFM=V,LRECL=256 NOTE: 12 records were read from the infile IN01. The minimum record length was 15. The maximum record length was 15. NOTE: The data set WORK.ONE has 12 observations and 3 variables. NOTE: DATA statement used: real time 0.18 seconds cpu time 0.10 seconds 11 PROC PRINT DATA=ONE; 12 NOTE: There were 12 observations read from the data set WORK.ONE. NOTE: The PROCEDURE PRINT printed page 1. NOTE: PROCEDURE PRINT used: real time 0.06 seconds cpu time 0.04 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.65 seconds cpu time 0.51 seconds