1 The SAS System 12:58 Tuesday, October 29, 2013 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 - SFA T&R, Site 70070299. NOTE: This session is executing on the Linux 2.6.24-30-server (LINUX) platform. 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 nodate nonumber ps=54 ls=76; 2 3 data one; 4 infile 'ballistic1.dat'; 5 input bulltype layers v50 sharp fsp; 6 v50_2=(v50**2)/10000; 7 run; NOTE: The infile 'ballistic1.dat' is: Filename=/home/winner/public_html/data/ballistic1.dat, Owner Name=winner,Group Name=winner, Access Permission=rwxrwxrwx, Last Modified=Mon Jan 14 15:39:47 2008, File Size (bytes)=1025 NOTE: 25 records were read from the infile 'ballistic1.dat'. The minimum record length was 40. The maximum record length was 40. NOTE: The data set WORK.ONE has 25 observations and 6 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.01 seconds The SAS System 8 9 ods PDF file="ballistic_sas.pdf"; NOTE: Writing ODS PDF output to DISK destination "/home/winner/public_html/data/ballistic_sas.pdf", printer "PDF". 10 ods graphics on; 11 12 proc reg; 13 model v50_2 = layers sharp fsp layers*sharp layers*fsp; _ 22 200 NOTE: The previous statement has been deleted. ERROR 22-322: Syntax error, expecting one of the following: a name, ;, -, /, :, _ALL_, _CHARACTER_, _CHAR_, _NUMERIC_, {. ERROR 200-322: The symbol is not recognized and will be ignored. 14 run; WARNING: No variables specified for an SSCP matrix. Execution terminating. NOTE: PROCEDURE REG used (Total process time): real time 0.01 seconds cpu time 0.02 seconds 15 16 proc reg; 17 model v50_2 = layers sharp fsp; 18 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. 19 NOTE: The PROCEDURE REG printed page 1. NOTE: PROCEDURE REG used (Total process time): real time 9.95 seconds cpu time 0.72 seconds 20 proc glm; 21 class bulltype; 22 model v50_2 = layers bulltype layers*bulltype; 23 run; The SAS System 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. 24 NOTE: The PROCEDURE GLM printed pages 2-3. NOTE: PROCEDURE GLM used (Total process time): real time 0.63 seconds cpu time 0.30 seconds 25 proc glm; 26 class bulltype; 27 model v50_2 = layers bulltype; 28 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. 29 30 ods grahics off; _______ 1 WARNING 1-322: Assuming the symbol GRAPHICS was misspelled as grahics. 31 ods PDF close; NOTE: ODS PDF printed 9 pages to /home/winner/public_html/data/ballistic_sas.pdf. 32 33 run; 34 quit; NOTE: The PROCEDURE GLM printed pages 4-5. NOTE: PROCEDURE GLM used (Total process time): real time 0.72 seconds cpu time 0.32 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 11.44 seconds cpu time 1.44 seconds