reg6_6.sas

来自「黄燕 吴平《SAS统计分析及应用》 书中一些例子的SAS程序代码」· SAS 代码 · 共 12 行

SAS
12
字号
data data_prg.reg6_6a;
set data_prg.reg6_6;
x11=x1*x1;x22=x2*x2;x33=x3*x3;
run;
proc reg data=data_prg.reg6_6a;
model y=x1-x3 x11 x22 x33/selection=stepwise ; 
model y=x1-x3 x11 x22 x33/selection=b noint; 
model y=x1-x3 x11 x22 x33/selection=f noint; 
model y=x2 x22 x33/selection=stepwise noint r cli influence  collin ; 
run; 
quit;

⌨️ 快捷键说明

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