1 The SAS System 15:44 Thursday, October 29, 2015 NOTE: Copyright (c) 2002-2012 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software 9.4 (TS1M1) Licensed to UNIVERSITY OF FLORIDA - SFA T&R, Site 70095659. NOTE: This session is executing on the Linux 2.6.32-504.23.4.el6.x86_64 (LIN X64) platform. NOTE: Updated analytical products: SAS/STAT 13.1 SAS/ETS 13.1 SAS/OR 13.1 SAS/IML 13.1 SAS/QC 13.1 WARNING: Your system is scheduled to expire on November 29, 2015, which is 31 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 70095659 and company name as UNIVERSITY OF FLORIDA - SFA T&R. On the SAS REP list provided, locate the REP for operating system LIN X64. NOTE: Additional host information: Linux LIN X64 2.6.32-504.23.4.el6.x86_64 #1 SMP Fri May 29 10:16:43 EDT 2015 x86_64 Red Hat Enterprise Linux Server release 6.7 (Santiago) 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.06 seconds cpu time 0.03 seconds 1 options nodate nonumber ps=54 ls=80; 2 3 data wine; WARNING: The Base SAS Software product with which DATASTEP is associated will The SAS System 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. 4 infile 'sugarcane_wine.dat'; 5 input x1 x2 x3 sugar 6 ph temp solids 7 eth col aro flav overall; 8 run; NOTE: The infile 'sugarcane_wine.dat' is: Filename=/home/winner/public_html/data/sugarcane_wine.dat, Owner Name=winner,Group Name=winner, Access Permission=-rwxrw-r--, Last Modified=28Oct2013:11:34:50, File Size (bytes)=1455 NOTE: 15 records were read from the infile 'sugarcane_wine.dat'. The minimum record length was 96. The maximum record length was 96. NOTE: The data set WORK.WINE has 15 observations and 12 variables. NOTE: DATA statement used (Total process time): real time 0.04 seconds cpu time 0.01 seconds 9 10 proc print; 11 NOTE: There were 15 observations read from the data set WORK.WINE. NOTE: The PROCEDURE PRINT printed page 1. NOTE: PROCEDURE PRINT used (Total process time): real time 0.10 seconds cpu time 0.03 seconds 12 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. 13 model overall = x1 x2 x3; 14 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 15 16 ods PDF file="sugarcane_wine_sas2.pdf"; The SAS System NOTE: Writing ODS PDF output to DISK destination "/home/winner/public_html/data/sugarcane_wine_sas2.pdf", printer "PDF". 17 ods graphics on; 18 proc rsreg plots=all; 19 model overall = sugar ph temp; 20 run; NOTE: The graph will be rendered as an image due to the use of a continuous legend. NOTE: The PROCEDURE RSREG printed pages 5-7. NOTE: PROCEDURE RSREG used (Total process time): real time 7.09 seconds cpu time 0.63 seconds 21 22 proc rsreg plots(unpack)=surface(3d at(sugar=27.664050)); ERROR: No data set open to look up variables. 23 model overall = sugar ph temp; 24 ods select 'ph*temp=Pred'; 25 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 ''ph*temp=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. 26 27 proc rsreg plots(unpack)=surface(3d at(ph=5.371202)); ERROR: No data set open to look up variables. 28 model overall = sugar ph temp; 29 ods select 'sugar*temp=Pred'; 30 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 ''sugar*temp=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. 31 The SAS System 32 proc rsreg plots(unpack)=surface(3d at(temp=21.682281)); ERROR: No data set open to look up variables. 33 model overall = sugar ph temp; 34 ods select 'sugar*ph=Pred'; 35 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 ''sugar*ph=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. 36 37 ods graphics off; 38 ods PDF close; NOTE: ODS PDF printed 6 pages to /home/winner/public_html/data/sugarcane_wine_sas2.pdf. 39 run; 40 run; 41 quit; ERROR: Errors printed on pages 3,4. NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 7.41 seconds cpu time 0.77 seconds