1 The SAS System 21:44 Wednesday, August 27, 2003 NOTE: Copyright (c) 1989-1996 by SAS Institute Inc., Cary, NC, USA. NOTE: SAS (r) Proprietary Software Release 6.12 TS060 Licensed to PITTSBURG STATE UNIVERSITY-CAMPUSWIDE-T/R, Site 0030428001. NOTE: Running on IBM Model RS/6000 Serial Number 0023951D4C00. This message is contained in the SAS news file, and is presented upon initialization. Edit the files "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: AUTOEXEC processing beginning; file is /usr/local/sas/sas612/autoexec.sas. NOTE: SAS initialization used: real time 3.08 seconds cpu time 0.31 seconds NOTE: AUTOEXEC processing completed. 1 options ls=80; 2 data toluca; 3 input x y; 4 label x=Lot Size y=Work Hours; 5 xsq=x*x; 6 ysq=y*y; 7 xy=x*y; 8 cards; NOTE: The data set WORK.TOLUCA has 25 observations and 5 variables. NOTE: DATA statement used: real time 2.21 seconds cpu time 0.11 seconds 34 ; 35 36 proc means data=toluca; 37 NOTE: The PROCEDURE MEANS printed page 1. NOTE: PROCEDURE MEANS used: real time 0.36 seconds cpu time 0.03 seconds 38 proc plot data=toluca; 39 plot y*x; 40 NOTE: The PROCEDURE PLOT printed page 2. NOTE: PROCEDURE PLOT used: real time 0.32 seconds cpu time 0.05 seconds 2 The SAS System 21:44 Wednesday, August 27, 2003 41 proc reg data=toluca; 42 model y=x; 43 output out=new p=predict r=residual; 44 NOTE: 25 observations read. NOTE: 25 observations used in computations. NOTE: The data set WORK.NEW has 25 observations and 7 variables. NOTE: The PROCEDURE REG printed page 3. NOTE: PROCEDURE REG used: real time 1.64 seconds cpu time 0.09 seconds 45 proc print data=new; NOTE: The PROCEDURE PRINT printed page 4. NOTE: PROCEDURE PRINT used: real time 0.10 seconds cpu time 0.00 seconds NOTE: The SAS System used: real time 8.27 seconds cpu time 0.63 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414