1 The SAS System 09:01 Thursday, November 17, 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-29-server (LINUX) platform. WARNING: Your system is scheduled to expire on December 13, 2011, which is 26 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.01 seconds 1 options nodate nonumber ps=54 ls=80; 2 3 data arg_wheat; 4 infile "argentine_wheat.dat"; 5 input year 1-8 wheatyld 9-16 rain 17-24 temp 25-32; 6 raintemp=rain*temp; 7 run; NOTE: The infile "argentine_wheat.dat" is: Filename=/home/winner/public_html/data/argentine_wheat.dat, Owner Name=winner,Group Name=winner, Access Permission=rwxrw-r--, Last Modified=Wed Nov 16 10:53:04 2011, File Size (bytes)=990 The SAS System NOTE: 30 records were read from the infile "argentine_wheat.dat". The minimum record length was 32. The maximum record length was 32. NOTE: The data set WORK.ARG_WHEAT has 30 observations and 5 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds 8 9 ods PDF file="argwheat_sas1.pdf"; NOTE: Writing ODS PDF output to DISK destination "/home/winner/public_html/data/argwheat_sas1.pdf", printer "PDF". 10 ods graphics on; 11 12 proc reg plots=diagnostics plots(label)=(residuals); WARNING: The SAS/STAT product with which REG 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. 13 var year; 14 model wheatyld = rain temp raintemp / dw; 15 output out=arg_wheat_r r=e; 16 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. 17 NOTE: The data set WORK.ARG_WHEAT_R has 30 observations and 6 variables. NOTE: The PROCEDURE REG printed pages 1-2. NOTE: PROCEDURE REG used (Total process time): real time 10.03 seconds cpu time 0.77 seconds 18 data arg_wheat_r; set arg_wheat_r; e2=e**2; 19 NOTE: There were 30 observations read from the data set WORK.ARG_WHEAT_R. NOTE: The data set WORK.ARG_WHEAT_R has 30 observations and 7 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds The SAS System cpu time 0.00 seconds 20 proc reg; 21 model e2 = rain temp raintemp; 22 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. 23 24 ods graphics off; 25 26 27 ods PDF close; NOTE: ODS PDF printed 7 pages to /home/winner/public_html/data/argwheat_sas1.pdf. 28 29 quit; NOTE: The PROCEDURE REG printed page 3. NOTE: PROCEDURE REG used (Total process time): real time 2.29 seconds cpu time 0.73 seconds 30 WARNING: The SAS/ETS product with which MODEL 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. 31 proc model data=arg_wheat; 32 parms b0 b1 b2 b3; 33 wheatyld = b0 + b1*rain + b2*temp + b3*raintemp; 34 fit wheatyld / breusch = (1 rain temp raintemp); /* This is based 34 ! on studentized residuals */ 35 run; NOTE: At OLS Iteration 1 CONVERGE=0.001 Criteria Met. 36 37 quit; NOTE: The PROCEDURE MODEL printed pages 4-6. NOTE: PROCEDURE MODEL used (Total process time): The SAS System real time 0.02 seconds cpu time 0.02 seconds ERROR: Errors printed on pages 2,3. NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 12.47 seconds cpu time 1.61 seconds