1 The SAS System 11:44 Thursday, October 7, 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.01 seconds 1 options ps=54 ls=76; 2 goptions reset=all device=pdf gsfname=output gsfmode=replace; 3 4 data muscle1; 5 infile 'muscle1.dat'; 6 input bodymass 5-8 worklev 13-16 heat 22-24; 7 run; NOTE: The infile 'muscle1.dat' is: File Name=/home/winner/public_html/data/muscle1.dat, Owner Name=winner,Group Name=winner, Access Permission=rwxrwxrwx, File Size (bytes)=600 NOTE: 24 records were read from the infile 'muscle1.dat'. The minimum record length was 24. The maximum record length was 24. NOTE: The data set WORK.MUSCLE1 has 24 observations and 3 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 2 The SAS System 11:44 Thursday, October 7, 2010 8 9 proc reg; 10 model heat = bodymass worklev /ss1 ss2; 11 output out=regout p=predict r=residuals; 12 run; 13 14 NOTE: The data set WORK.REGOUT has 24 observations and 5 variables. NOTE: The PROCEDURE REG printed page 1. NOTE: PROCEDURE REG used (Total process time): real time 0.01 seconds cpu time 0.02 seconds 15 proc sort data=regout; by residuals; 16 run; NOTE: There were 24 observations read from the data set WORK.REGOUT. NOTE: The data set WORK.REGOUT has 24 observations and 5 variables. NOTE: PROCEDURE SORT used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 17 18 data regout; set regout; 19 normscore=probit((_n_-0.25)/(24+0.375)); 20 run; NOTE: There were 24 observations read from the data set WORK.REGOUT. NOTE: The data set WORK.REGOUT has 24 observations and 6 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 21 22 23 24 ods PDF file="muscle1sas.pdf"; NOTE: Writing ODS PDF output to DISK destination "/home/winner/public_html/data/muscle1sas.pdf", printer "PDF". 25 ods layout Start width=8in height=10in columns=2 rows=2 26 column_gutter=0.5in row_gutter=0.8in row_heights=(3.5in 3.5in); __ 22 ___________ 3 The SAS System 11:44 Thursday, October 7, 2010 202 ERROR 22-322: Syntax error, expecting one of the following: ;, COLUMNS, COLUMN_GUTTER, COLUMN_WIDTHS, ENTIREPAGE, HEIGHT, ROWS, ROW_GUTTER, ROW_HEIGHTS, WIDTH. ERROR 202-322: The option or parameter is not recognized and will be ignored. 27 28 ods region row=1 column=1; 29 proc gplot data=regout; 30 plot residuals*predict / name="residfit"; 31 run; ERROR: Cannot open X display. Check display name/server access authorization. WARNING: GSFNAME OUTPUT has not been assigned. NOTE: GSFNAME OUTPUT temporarily assigned to /home/winner/public_html/data/sasgraph.pdf. ERROR: Cannot open X display. Check display name/server access authorization. ERROR: Cannot open X display. Check display name/server access authorization. 32 33 34 ods region row=1 column=2; NOTE: 205 RECORDS WRITTEN TO /home/winner/public_html/data/sasgraph.pdf NOTE: There were 24 observations read from the data set WORK.REGOUT. NOTE: PROCEDURE GPLOT used (Total process time): real time 0.09 seconds cpu time 0.09 seconds 35 proc gplot data=regout; 36 plot residuals*bodymass / name="residx1"; 37 run; ERROR: Cannot open X display. Check display name/server access authorization. WARNING: GSFNAME OUTPUT has not been assigned. NOTE: GSFNAME OUTPUT temporarily assigned to /home/winner/public_html/data/sasgraph.pdf. ERROR: Cannot open X display. Check display name/server access authorization. ERROR: Cannot open X display. Check display name/server access 4 The SAS System 11:44 Thursday, October 7, 2010 authorization. 38 39 40 ods region row=2 column=1; NOTE: 93 RECORDS WRITTEN TO /home/winner/public_html/data/sasgraph.pdf NOTE: There were 24 observations read from the data set WORK.REGOUT. NOTE: PROCEDURE GPLOT used (Total process time): real time 0.06 seconds cpu time 0.05 seconds 41 proc gplot data=regout; 42 plot residuals*worklev / name="residx2"; 43 run; ERROR: Cannot open X display. Check display name/server access authorization. WARNING: GSFNAME OUTPUT has not been assigned. NOTE: GSFNAME OUTPUT temporarily assigned to /home/winner/public_html/data/sasgraph.pdf. ERROR: Cannot open X display. Check display name/server access authorization. ERROR: Cannot open X display. Check display name/server access authorization. 44 45 46 ods region row=2 column=2; NOTE: 98 RECORDS WRITTEN TO /home/winner/public_html/data/sasgraph.pdf NOTE: There were 24 observations read from the data set WORK.REGOUT. NOTE: PROCEDURE GPLOT used (Total process time): real time 0.06 seconds cpu time 0.06 seconds 47 proc gplot data=regout; 48 plot residuals*normscore / name="qqnorm"; 49 run; ERROR: Cannot open X display. Check display name/server access authorization. WARNING: GSFNAME OUTPUT has not been assigned. NOTE: GSFNAME OUTPUT temporarily assigned to /home/winner/public_html/data/sasgraph.pdf. ERROR: Cannot open X display. Check display name/server access 5 The SAS System 11:44 Thursday, October 7, 2010 authorization. ERROR: Cannot open X display. Check display name/server access authorization. 50 51 quit; NOTE: 89 RECORDS WRITTEN TO /home/winner/public_html/data/sasgraph.pdf NOTE: There were 24 observations read from the data set WORK.REGOUT. NOTE: PROCEDURE GPLOT used (Total process time): real time 0.07 seconds cpu time 0.05 seconds 52 53 ods layout end; 54 55 ods PDF close; NOTE: ODS PDF printed 1 page to /home/winner/public_html/data/muscle1sas.pdf. 56 57 quit; ERROR: Errors printed on pages 2,3,4,5. NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 5.91 seconds cpu time 0.85 seconds