菜单

reg 回归分析

data ww.test9_2; /*创建回归分析的数据*/
input y x;
cards;
972.7 10194
827.77 11647
360.09 8954
828.33 11307
996.05 12362
319.88 9598
308.49 7782
280.89 7798
328.8 8059
436.66 8700
442.75 9451
286.02 8517
103.1 5593
;
run;
proc reg data=ww.test9_2; /*进行回归分析*/
model y=x/clb cli clm r; /*定义回归模型*/
plot x*y; /*绘制模型散点图*/
run;