1 The SAS System 08:41 Tuesday, September 9, 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 1.60 seconds cpu time 0.19 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 cards; NOTE: The data set WORK.TOLUCA has 25 observations and 2 variables. NOTE: DATA statement used: real time 0.55 seconds cpu time 0.10 seconds 31 ; 32 33 proc reg data=toluca; 34 model y=x/cli clm; 35 output out=howdy p=pred u95=upper95i l95 =lower95i u95m=u95mean 36 l95m=l95mean; 37 38 Test1: test x=0; 39 NOTE: 25 observations read. NOTE: 25 observations used in computations. NOTE: The data set WORK.HOWDY has 25 observations and 7 variables. NOTE: The PROCEDURE REG printed pages 1-4. NOTE: PROCEDURE REG used: real time 0.58 seconds cpu time 0.14 seconds 40 proc print data=howdy; 41 42 2 The SAS System 08:41 Tuesday, September 9, 2003 NOTE: The PROCEDURE PRINT printed page 5. NOTE: PROCEDURE PRINT used: real time 0.03 seconds cpu time 0.02 seconds 43 proc plot data=howdy; 44 plot upper95i*x='U' 45 pred*x='P' 46 lower95i*x='L' 47 y*x='*'/overlay; 48 NOTE: The PROCEDURE PLOT printed page 6. NOTE: PROCEDURE PLOT used: real time 0.01 seconds cpu time 0.02 seconds 49 proc plot data=howdy; 50 plot u95mean*x='U' 51 pred*x='P' 52 l95mean*x='L' 53 y*x='*'/overlay; NOTE: The PROCEDURE PLOT printed page 7. NOTE: PROCEDURE PLOT used: real time 0.00 seconds cpu time 0.00 seconds NOTE: The SAS System used: real time 3.03 seconds cpu time 0.53 seconds NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414