yydy411.log

来自「高老师的经典多元统计分析教材源代码非常经典使用」· LOG 代码 · 共 51 行

LOG
51
字号
1                                           The SAS System            13:15 Saturday, February 6, 2005

NOTE: Copyright (c) 1999-2001 by SAS Institute Inc., Cary, NC, USA. 
NOTE: SAS (r) Proprietary Software Release 8.2 (TS2M0 DBCS2944)
      Licensed to QUEENSLAND UNIVERSITY OF TECHNOLOGY, Site 0039969016.
NOTE: This session is executing on the WIN_PRO  platform.



NOTE: SAS initialization used:
      real time           1.68 seconds
      cpu time            0.24 seconds
      
1          /*   yydy411.sas  */
2          
3          
4          data d411;
5            input x1-x4 y ;
6            cards;

NOTE: The data set WORK.D411 has 13 observations and 5 variables.
NOTE: DATA statement used:
      real time           0.37 seconds
      cpu time            0.01 seconds
      

20         ;
21         
22         proc reg data=d411;
23            model y=x1-x4 ;
24         run;

NOTE: 13 observations read.
NOTE: 13 observations used in computations.
25         quit;

NOTE: The PROCEDURE REG printed page 1.
NOTE: PROCEDURE REG used:
      real time           0.70 seconds
      cpu time            0.12 seconds
      

26         
27         

NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414
NOTE: The SAS System used:
      real time           3.04 seconds
      cpu time            0.40 seconds
      

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?