1 The SAS System 15:15 Tuesday, November 1, 2011 WARNING: The Base Product product with which Session Manager is associated WARNING: will be expiring soon, and is currently in warning mode to indicate WARNING: this upcoming expiration. Please run PROC SETINIT to obtain more WARNING: information on your warning period. NOTE: Copyright (c) 2002-2008 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.2 (TS2M2) Licensed to UNIVERSITY OF FLORIDA-T/R, Site 70055083. NOTE: This session is executing on the Linux 2.6.24-28-server (LINUX) platform. WARNING: Your system is scheduled to expire on December 13, 2011, which is 42 days from now. The SAS System will no longer function on or after that date. Please contact your SAS Installation Representative to obtain your updated SAS Installation Data (SID) file, which includes SETINIT information. To locate the name of your SAS Installation Representative go to http://support.sas.com/repfinder and provide your site number 70055083 and company name as UNIVERSITY OF FLORIDA-T/R. On the SAS REP list provided, locate the REP for operating system LINUX. 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.04 seconds cpu time 0.02 seconds 1 options nodate nonumber ps=54 ls=80; 2 3 data orange; 4 infile 'orange_emul.dat'; 5 input block 1-8 x1 9-16 x2 17-24 x3 25-32 6 block1 40 block2 48 block3 56 7 y1 57-64 y2 65-72 y3 73-80 y4 81-88 y5 89-96; 8 block3=1-block1-block2; 9 run; NOTE: The infile 'orange_emul.dat' is: Filename=/home/winner/public_html/data/orange_emul.dat, Owner Name=winner,Group Name=winner, Access Permission=rwxrwxr-x, The SAS System Last Modified=Tue Nov 1 14:33:59 2011, File Size (bytes)=1960 NOTE: 20 records were read from the infile 'orange_emul.dat'. The minimum record length was 97. The maximum record length was 97. NOTE: The data set WORK.ORANGE has 20 observations and 12 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 10 11 proc print; 12 NOTE: There were 20 observations read from the data set WORK.ORANGE. NOTE: The PROCEDURE PRINT printed page 1. NOTE: PROCEDURE PRINT used (Total process time): real time 0.03 seconds cpu time 0.03 seconds 13 proc rsreg; WARNING: The SAS/STAT product with which RSREG is associated will be expiring soon, and is currently in warning mode to indicate this upcoming expiration. Please run PROC SETINIT to obtain more information on your warning period. 14 model y2 = x1 x2 x3; 15 run; NOTE: The PROCEDURE RSREG printed pages 2-4. NOTE: PROCEDURE RSREG used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 16 proc rsreg; 17 model y2 = block1-block2 x1 x2 x3 / covar=2; 18 run; NOTE: The PROCEDURE RSREG printed pages 5-7. NOTE: PROCEDURE RSREG used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 19 20 ods PDF file="orange_emul_sas1.pdf"; NOTE: Writing ODS PDF output to DISK destination "/home/winner/public_html/data/orange_emul_sas1.pdf", printer "PDF". 21 ods graphics on; The SAS System 22 proc rsreg plots=all; 23 model y2 = block1-block2 x1 x2 x3 / covar=2; 24 run; ERROR: The connection to the X display server could not be made. Verify that the X display name is correct, and that you have access authorization. See the online Help for more information about connecting to an X display server. ERROR: The connection to the X display server could not be made. Verify that the X display name is correct, and that you have access authorization. See the online Help for more information about connecting to an X display server. ERROR: The connection to the X display server could not be made. Verify that the X display name is correct, and that you have access authorization. See the online Help for more information about connecting to an X display server. ERROR: The connection to the X display server could not be made. Verify that the X display name is correct, and that you have access authorization. See the online Help for more information about connecting to an X display server. NOTE: The PROCEDURE RSREG printed pages 8-10. NOTE: PROCEDURE RSREG used (Total process time): real time 14.08 seconds cpu time 1.53 seconds 25 26 proc rsreg plots(unpack)=surface(3d at(x1=16.5,block1=0,block2=0)); ERROR: No data set open to look up variables. ERROR: No data set open to look up variables. ERROR: No data set open to look up variables. 27 model y2 = block1-block2 x1 x2 x3 / covar=2; 28 ods select 'x2*x3=Pred'; 29 run; NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE RSREG used (Total process time): real time 0.00 seconds cpu time 0.00 seconds WARNING: Output ''x2*x3=Pred'' was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify that the NOPRINT option is not used. 30 31 32 The SAS System 33 ods graphics off; 34 35 ds PDF close; 36 37 quit; ERROR: Errors printed on page 3. NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 14.28 seconds cpu time 1.67 seconds