1 The SAS System 15:42 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.07 seconds cpu time 0.02 seconds 1 goptions ps=54 ls=76; ERROR: 'PS' is not a valid graphics option. ERROR: 'LS' is not a valid graphics option. 2 * goptions reset=all device=pdf gsfname=output gsfmode=replace; 3 4 FILENAME website HTTP 5 "http://www.stat.ufl.edu/~winner/data/mangowine.dat"; 6 7 data one; WARNING: The Base SAS Software product with which DATASTEP is associated will be expiring soon, and is currently in warning mode to 2 The SAS System 15:42 Thursday, October 29, 2015 indicate this upcoming expiration. Please run PROC SETINIT to obtain more information on your warning period. 8 infile website; 9 input run_id cx1 cx2 cx3 ethanol glycerol acidity const temp ph inocsz; 10 run; NOTE: The infile WEBSITE is: Filename=http://www.stat.ufl.edu/~winner/data/mangowine.dat, Local Host Name=ls-stat-login1.stat.ufl.edu, Local Host IP addr=10.241.112.62, Service Hostname Name=english.ufl.edu, Service IP addr=128.227.24.87, Service Name=httpd,Service Portno=80, Lrecl=32767,Recfm=Variable NOTE: 20 records were read from the infile WEBSITE. The minimum record length was 88. The maximum record length was 88. NOTE: The data set WORK.ONE has 20 observations and 11 variables. NOTE: DATA statement used (Total process time): real time 0.02 seconds cpu time 0.02 seconds 11 12 ods PDF file="mangowine_sas1.pdf"; NOTE: Writing ODS PDF output to DISK destination "/home/winner/public_html/data/mangowine_sas1.pdf", printer "PDF". 13 ods graphics on; 14 proc rsreg plots=all; 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. 15 model ethanol = temp ph inocsz; 16 run; NOTE: The graph will be rendered as an image due to the use of a continuous legend. NOTE: The PROCEDURE RSREG printed pages 1-2. NOTE: PROCEDURE RSREG used (Total process time): real time 7.39 seconds cpu time 0.73 seconds 17 18 proc rsreg plots(unpack)=surface(3d at (inocsz=11.88814)); ERROR: No data set open to look up variables. 19 model ethanol = temp ph inocsz; 20 ods select 'temp*ph=Pred'; 21 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 ''temp*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. 22 proc rsreg plots(unpack)=surface(3d at (temp=22.09306)); 3 The SAS System 15:42 Thursday, October 29, 2015 ERROR: No data set open to look up variables. 23 model ethanol = temp ph inocsz; 24 ods select 'ph*inocsz=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*inocsz=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 proc rsreg plots(unpack)=surface(3d at (ph=3.811642)); ERROR: No data set open to look up variables. 27 model ethanol = temp ph inocsz; 28 ods select 'temp*inocsz=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 ''temp*inocsz=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 ods graphics off; 31 ods PDF Close; NOTE: ODS PDF printed 6 pages to /home/winner/public_html/data/mangowine_sas1.pdf. 32 33 run; 34 quit; 35 ERROR: Errors printed on pages 1,2,3. NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 7.59 seconds cpu time 0.85 seconds