1 The SAS System 15:57 Thursday, April 15, 2010 NOTE: Copyright (c) 2002-2003 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) 9.1 (TS1M3) Licensed to UNIVERSITY OF FLORIDA-T/R, Site 0007029013. NOTE: This session is executing on the Linux 2.6.12-gentoo-r10 platform. NOTE: SAS 9.1.3 Service Pack 3 You are running SAS 9. Some SAS 8 files will be automatically converted by the V9 engine; others are incompatible. Please see http://support.sas.com/rnd/migration/planning/platform/64bit.html PROC MIGRATE will preserve current SAS file attributes and is recommended for converting all your SAS libraries from any SAS 8 release to SAS 9. For details and examples, please see http://support.sas.com/rnd/migration/index.html This message is contained in the SAS news file, and is presented upon initialization. Edit the file "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.02 seconds cpu time 0.00 seconds 1 options ps=54 ls=76; 2 3 data one; 4 input sqrthwet 4-8 sqrthair 12-16 trt 24 trt2 32 trt3 40 trt4 48 4 ! trt5 56 trt6 64; 5 trt2x = trt2*sqrthair; 6 trt3x = trt3*sqrthair; 7 trt4x = trt4*sqrthair; 8 trt5x = trt5*sqrthair; 9 trt6x = trt6*sqrthair; 10 cards; NOTE: The data set WORK.ONE has 60 observations and 13 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 71 ; 72 73 proc means mean; 2 The SAS System 15:57 Thursday, April 15, 2010 74 class trt; 75 var sqrthwet sqrthair; 76 run; NOTE: There were 60 observations read from the data set WORK.ONE. NOTE: The PROCEDURE MEANS printed page 1. NOTE: PROCEDURE MEANS used (Total process time): real time 0.01 seconds cpu time 0.02 seconds 77 78 79 proc glm; 80 class trt; 81 model sqrthwet = trt; 82 lsmeans trt; 83 run; 84 NOTE: The PROCEDURE GLM printed pages 2-4. NOTE: PROCEDURE GLM used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 85 proc glm; 86 class trt; 87 model sqrthwet = sqrthair; 88 lsmeans trt; ERROR: Effects used in the LSMEANS statement must have appeared previously in the MODEL statement. NOTE: The previous statement has been deleted. 89 run; NOTE: The PROCEDURE GLM printed pages 5-6. NOTE: PROCEDURE GLM used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 90 proc glm; 91 class trt; 92 model sqrthwet = trt sqrthair; 93 lsmeans trt; 94 run; 95 3 The SAS System 15:57 Thursday, April 15, 2010 NOTE: The PROCEDURE GLM printed pages 7-9. NOTE: PROCEDURE GLM used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 96 proc glm; 97 class trt; 98 model sqrthwet = trt sqrthair trt*sqrthair; 99 lsmeans trt; 100 run; 101 102 NOTE: The PROCEDURE GLM printed pages 10-12. NOTE: PROCEDURE GLM used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 103 proc reg; 104 model sqrthwet = sqrthair; 105 run; 106 NOTE: The PROCEDURE REG printed page 13. NOTE: PROCEDURE REG used (Total process time): real time 0.00 seconds cpu time 0.02 seconds 107 proc reg; 108 model sqrthwet = sqrthair trt2 trt3 trt4 trt5 trt6; 109 run; 110 111 NOTE: The PROCEDURE REG printed page 14. NOTE: PROCEDURE REG used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 112 proc reg; 113 model sqrthwet = sqrthair trt2 trt3 trt4 trt5 trt6 trt2x trt3x 113 ! trt4x trt5x trt6x; 114 run; 4 The SAS System 15:57 Thursday, April 15, 2010 115 116 NOTE: The PROCEDURE REG printed page 15. NOTE: PROCEDURE REG used (Total process time): real time 0.00 seconds cpu time 0.01 seconds ERROR: Errors printed on page 2. NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.09 seconds cpu time 0.08 seconds