1 The SAS System 21:31 Wednesday, May 3, 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.31 seconds cpu time 0.11 seconds NOTE: AUTOEXEC processing completed. 1 options ls=79 ps=100; 2 3 data a; 4 infile 'depies.dat' firstobs=2; 5 input cow trt $ pas barn pad parity $ wk kmy kfat pfat kpro ppro scc fcm; 6 /* B=BARN M=MIXED A=ALFALFA */ NOTE: The infile 'depies.dat' is: File Name=/usr1/y/yandell/.SAS/depies.dat, Owner Name=yandell,Group Name=calsstat, Access Permission=rw-r--r--, File Size (bytes)=39469 NOTE: 545 records were read from the infile 'depies.dat'. The minimum record length was 68. The maximum record length was 72. NOTE: The data set WORK.A has 545 observations and 14 variables. NOTE: DATA statement used: real time 0.45 seconds cpu time 0.12 seconds 7 proc sort; by parity trt pad wk cow; 8 9 /* model kmy kfat pfat kpro ppro scc fcm = */ NOTE: The data set WORK.A has 545 observations and 14 variables. NOTE: PROCEDURE SORT used: real time 0.31 seconds cpu time 0.04 seconds 10 proc glm; 11 class barn pas pad parity wk cow; 12 model kmy = barn pas(barn) pad(barn*pas) 13 parity parity*barn parity*pas(barn) cow(parity*pad*barn*pas) 14 wk wk*barn wk*pas(barn) wk*parity wk*barn*parity wk*parity*pas(barn); 15 random pad(bar*pas) cow(parity*pad*barn*pas); ERROR: Variable BAR not found. ERROR: Variable BAR not found. ERROR: Variable BAR not found. NOTE: The previous statement has been deleted. 16 test h = barn pas(barn) e = pad(barn*pas); 17 test h = parity parity*barn parity*pas(barn) e = cow(parity*pad*barn*pas); 18 lsmeans barn pas(barn) / e = pad(barn*pas) pdiff stderr; 19 NOTE: The PROCEDURE GLM printed pages 1-3. NOTE: PROCEDURE GLM used: real time 3.58 seconds cpu time 2.78 seconds 20 proc mixed; 21 class barn pas pad parity wk cow; 22 model kmy = barn|pas(barn)|parity|wk; 23 random pad(barn*pas) cow(parity*pad*barn*pas); 24 lsmeans pas(barn) barn; 25 NOTE: Estimated G matrix is not positive definite. NOTE: At least one W.D format was too small for the number to be printed. The decimal may be shifted by the "BEST" format. NOTE: The PROCEDURE MIXED printed pages 4-5. NOTE: PROCEDURE MIXED used: real time 9.71 seconds cpu time 8.01 seconds 26 proc mixed; 27 class barn pas pad parity wk cow; 28 model kmy = barn|pas(barn)|parity|wk; 29 random pad(barn*pas) cow(parity*pad*barn*pas) / type=un; 30 lsmeans pas(barn) barn; 31 ERROR: Unable to allocate sufficient memory. At least 5925K bytes were ERROR: Unable to allocate sufficient memory. At least 5925K bytes were ERROR: Unable to allocate sufficient memory. At least 5925K bytes were requested. You must either increase the amount of memory available, or requested. You must either increase the amount of memory available, or requested. You must either increase the amount of memory available, or approach the problem differently. approach the problem differently. approach the problem differently. NOTE: The SAS System stopped processing this step because of insufficient 2 The SAS System 21:31 Wednesday, May 3, 1995 memory. NOTE: The PROCEDURE MIXED printed page 6. NOTE: PROCEDURE MIXED used: real time 0.82 seconds cpu time 0.61 seconds 32 proc mixed; 33 class barn pas pad parity wk cow; 34 model kmy = barn|pas(barn)|parity|wk; 35 random pad(barn*pas); 36 repeated / type=cs subject = cow(parity*pad); 37 lsmeans barn pas(barn); NOTE: Estimated G matrix is not positive definite. NOTE: At least one W.D format was too small for the number to be printed. The decimal may be shifted by the "BEST" format. NOTE: The PROCEDURE MIXED printed pages 7-8. NOTE: PROCEDURE MIXED used: real time 39.44 seconds cpu time 34.15 seconds ERROR: Errors printed on page 1. ERROR: Errors printed on page 1. ERROR: Errors printed on page 1. NOTE: The SAS System used: real time 55.87 seconds cpu time 45.97 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414