1 The SAS System 18:29 Saturday, February 10, 1996 NOTE: Copyright (c) 1989-1993 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software Release 6.10 TS018 Licensed to UNIVERSITY OF WISCONSIN, Site 0002176032. 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. All products for this release are production except for the following: SAS/CALC - EXPERIMENTAL SAS/CONNECT - BETA SAS/EIS - EXPERMENTAL SAS/OR - BETA SAS/QC - BETA SAS/SHARE - BETA NOTE: AUTOEXEC processing beginning; file is /afs/cs.wisc.edu/s/sas-6.10/alpha_osf20/sas610/autoexec.sas. NOTE: SAS initialization used: real time 17.93 seconds cpu time 1.33 seconds NOTE: AUTOEXEC processing completed. 1 options nocenter ps=100 ls=79; 2 3 data a; 4 infile 'product.dat' firstobs=2; 5 input A B C D E $ y; 6 NOTE: The infile 'product.dat' is: File Name=/afs/cs.wisc.edu/u/y/a/yandell/public/html/pda/data/Product/product. dat, Owner Name=yandell,Group Name=yandell, Access Permission=rw-r-----, File Size (bytes)=400 NOTE: 18 records were read from the infile 'product.dat'. The minimum record length was 20. The maximum record length was 20. NOTE: The data set WORK.A has 18 observations and 6 variables. NOTE: DATA statement used: real time 4.93 seconds cpu time 0.45 seconds 7 proc glm; 8 class A B C D E; 9 model y = A B C D E / ss3; 10 NOTE: The PROCEDURE GLM printed pages 1-2. NOTE: PROCEDURE GLM used: real time 5.45 seconds cpu time 0.76 seconds 11 proc glm; 12 class A B C D E; 13 model y = A B D E / ss3; 14 NOTE: The PROCEDURE GLM printed pages 3-4. NOTE: PROCEDURE GLM used: real time 1.56 seconds cpu time 0.20 seconds 15 proc glm; 16 class A B C D E; 17 model y = B A E A*E / ss3; 18 NOTE: The PROCEDURE GLM printed pages 5-6. NOTE: PROCEDURE GLM used: real time 1.73 seconds cpu time 0.21 seconds 19 proc glm; 20 class A B C D E; 21 model y = B E / ss3; 22 output out=partial r=ry; 23 NOTE: The data set WORK.PARTIAL has 18 observations and 7 variables. NOTE: The PROCEDURE GLM printed pages 7-8. NOTE: PROCEDURE GLM used: real time 2.10 seconds 2 The SAS System 18:29 Saturday, February 10, 1996 cpu time 0.35 seconds 24 proc glm; 25 class A B C D E; 26 model ry = A | D / ss3; 27 lsmeans A*D / out=lsm; 28 NOTE: The data set WORK.LSM has 6 observations and 5 variables. NOTE: The PROCEDURE GLM printed pages 9-11. NOTE: PROCEDURE GLM used: real time 1.95 seconds cpu time 0.28 seconds 29 proc plot data=lsm; 30 plot lsmean*A=D; 31 NOTE: The PROCEDURE PLOT printed page 12. NOTE: PROCEDURE PLOT used: real time 0.60 seconds cpu time 0.05 seconds 32 proc glm data=partial; 33 class A B C D E; 34 model ry = A | E / ss3; 35 lsmeans A*E / out=lsm; 36 NOTE: The data set WORK.LSM has 9 observations and 5 variables. NOTE: The PROCEDURE GLM printed pages 13-15. NOTE: PROCEDURE GLM used: real time 2.01 seconds cpu time 0.30 seconds 37 proc plot data=lsm; 38 plot lsmean*A=E; NOTE: The PROCEDURE PLOT printed page 16. NOTE: PROCEDURE PLOT used: real time 0.01 seconds cpu time 0.01 seconds NOTE: The SAS System used: real time 41.66 seconds cpu time 4.30 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414