全部版块 我的主页
论坛 数据科学与人工智能 数据分析与数据科学 SAS专版
5058 1
2011-02-14
弱弱的问一下:

在使用proc reg时,如果想要利用output输出以下回归结果应该使用的keyword名称是什么?

1.第 i 个变量的拟合值,T值,P值;
2.模型的F值;
3.模型的拟合优度,修正拟合优度。

谢谢各位了。
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

全部回复
2015-5-8 13:27:55
For example, the following SAS statements create an output data set named b:

proc reg data=a;
   model y z=x1 x2;
   output out=b
      p=yhat zhat
      r=yresid zresid;
run;

In addition to the variables in the input data set, b contains the following variables:

yhat, with values that are predicted values of the dependent variable y

zhat, with values that are predicted values of the dependent variable z

yresid, with values that are the residual values of y

zresid, with values that are the residual values of z
QQ截图20150508132722.png QQ截图20150508132709.png
二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

相关推荐
栏目导航
热门文章
推荐文章

说点什么

分享

扫码加好友,拉您进群
各岗位、行业、专业交流群