1 The SAS System 14:16 Sunday, April 30, 1995 NOTE: Copyright(c) 1989 by SAS Institute Inc., Cary, NC USA. NOTE: SAS (r) Proprietary Software Release 6.09 TS027 Licensed to UNIVERSITY OF WISCONSIN, Site 0002176014. NOTE: AUTOEXEC processing beginning; file is /usr/sas609/autoexec.sas. NOTE: SAS initialization used: real time 0.24 seconds cpu time 0.10 seconds NOTE: AUTOEXEC processing completed. 1 options ls=130 ps=600; 2 3 data a; 4 infile 'depieso.dat' missover firstobs=2; 5 input cow pad trt $ parity $ wk kmy kfat pfat kpro ppro scc fcm; 6 /* B=BARN M=MIXED A=ALFALFA */ NOTE: The infile 'depieso.dat' is: File Name=/usr1/y/yandell/.SAS/depieso.dat, Owner Name=yandell,Group Name=calsstat, Access Permission=rw-r--r--, File Size (bytes)=62903 NOTE: 1089 records were read from the infile 'depieso.dat'. The minimum record length was 47. The maximum record length was 60. NOTE: The data set WORK.A has 1089 observations and 12 variables. NOTE: DATA statement used: real time 0.53 seconds cpu time 0.19 seconds 7 proc sort; by parity trt pad wk cow; 8 NOTE: The data set WORK.A has 1089 observations and 12 variables. NOTE: PROCEDURE SORT used: real time 0.38 seconds cpu time 0.06 seconds 9 proc means noprint; 10 by parity trt pad wk cow; 11 var kmy kfat pfat kpro ppro scc fcm; 12 output out = newdhi1 mean = ; NOTE: The data set WORK.NEWDHI1 has 545 observations and 14 variables. NOTE: PROCEDURE MEANS used: real time 0.28 seconds cpu time 0.08 seconds 13 data a; set newdhi1; 14 barn = 0; 15 if trt = 'B' then barn = 1; 16 pas = 0; 17 if trt = 'M' then pas =1; 18 if trt = 'A' then pas = -1; 19 if cow = 3612 then cow = 3647; NOTE: The data set WORK.A has 545 observations and 16 variables. NOTE: DATA statement used: real time 0.31 seconds cpu time 0.07 seconds 20 proc sort; by wk pas trt pad parity; NOTE: The data set WORK.A has 545 observations and 16 variables. NOTE: PROCEDURE SORT used: real time 0.25 seconds cpu time 0.03 seconds 21 proc print; 22 var cow trt pas barn pad parity wk kmy kfat pfat kpro ppro scc fcm; NOTE: The PROCEDURE PRINT printed page 1. NOTE: PROCEDURE PRINT used: real time 0.19 seconds cpu time 0.17 seconds NOTE: The SAS System used: real time 2.25 seconds cpu time 0.74 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414