1 The SAS System 12:06 Wednesday, October 28, 2009 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.00 seconds 1 options ps=54 ls=76; 2 3 4 5 data one; 6 input track $ 1-45 bank 48-50 length 56-59 topspeed 62-68; 7 cbank=bank-19.31; 8 clength=length-1.522; 9 cbank2=cbank**2; 10 cbl=cbank*clength; 11 clength2=clength**2; 12 cards; NOTE: The data set WORK.ONE has 21 observations and 9 variables. NOTE: DATA statement used (Total process time): real time 0.00 seconds cpu time 0.00 seconds 12 ! 34 ; 2 The SAS System 12:06 Wednesday, October 28, 2009 35 36 proc reg; 37 model topspeed = clength cbank clength2 cbl cbank2 / ss1; 38 run; 38 ! 39 quit; NOTE: The PROCEDURE REG printed page 1. NOTE: PROCEDURE REG used (Total process time): real time 0.02 seconds cpu time 0.02 seconds 39 ! NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414 NOTE: The SAS System used: real time 0.05 seconds cpu time 0.03 seconds