结果:找到“proc glm”相关内容29个,排序为按回复时间降序,搜索更多相关帖子请点击“高级”
proc glm报错
1 个回复 - 1150 次查看
使用
proc glm做非平衡的方差分析,数据量大约八万,报错:ODS graphics with more than 5000 points have been suppressed. Use the PLOTS(MAXPOINTS=) option in the
proc glm statement to change or override the ...
2021-8-4 09:41 - 俊俏道姑 - SAS专版
SAS PROC GLM程序问题
2 个回复 - 1239 次查看
proc glm data=comparison;
class method;
model ws = method;
contrast 'Adjustment vs Aggregation1' method 2 2 2 -3 -3;
estimate 'Adjustment vs Aggregation1' method 2 2 2 -3 -3;
title "contrast";
r ...
2021-3-5 15:16 - 2017110138 - SAS专版
proc glm的一些基础问题
6 个回复 - 9047 次查看
刚开始接触sas,
问一下关于
proc glm的个问题,
data如下
我转换完data成uniform格式以后,我想用
proc glm 运行3x2x3 factorial model with the three variables as the three factors,
我的code应该怎么写,
...
2012-12-15 07:27 - shenroong - SAS专版
proc glm过程中除了lsmean之外,还能不能求残差?
1 个回复 - 1689 次查看
顺便问一下se是表示残差的 意思吧?
我的代码:
ods output LSMeans=_lsmean;
proc glm data=origin_2;
class value arm;
model AVAL=value arm value*arm;
lsmeans value*arm/pdiff=all;
quit;
...
2016-8-23 10:54 - fyp198744 - SAS专版
如何将sas proc glm的系数输出到数据集里
0 个回复 - 3102 次查看
小妹正在做一个daily fixed effect的model,模型已经在sas里用
proc glm求出来了,但是最后需要算一个average daily effect (即求出所有daily dummy的系数的平均), 里面的时间变量的obs很多,所以不方便将所有系数复 ...
2015-3-9 09:16 - xufeifei - SAS专版
SAS proc glm 输出残差
4 个回复 - 6703 次查看
我写的如下:
proc glm data=aaa;
class year gics2;
model y = x1 x2 x3 x4 year gics2 /solution;
output out=bbb r=exy;
run;
想要得到残差项,可是在程序编辑窗口,r不是蓝色的,表明不是输出项。这是怎 ...
2014-5-18 23:23 - jy1st - SAS专版
Help!谁能帮我解释下这个output?(proc glm)
1 个回复 - 1454 次查看
proc glm 做Type I 、II,III,IV test时, 里面有General Form of Estimable Functions以及Type I 、II,III,IV Estimable Functions的output,我看了很多资料都没弄清楚这里面的L是如何决定的,以及干什么用的?可 ...
2012-11-19 12:27 - Silence. - SAS专版
向各位高手请教,proc glm
10 个回复 - 8526 次查看
有个firm fixed effect 和time fixed effect,
proc glm data=a;
absorb firm;
class time;
model anti=self pov time;
run;
不知道残差怎么算呢?
想算一个residual包括firm fixed effect,但是不包括t ...
2010-10-25 13:32 - 一眼瞬间 - SAS专版
用proc glm 怎么看哪个trt 更好一些。。请大家帮帮我吧
0 个回复 - 1348 次查看
题目是:
Perform the analysis of the data and identify the best treatment(一个6个,
已经量化为1-6,就是program中的trt).
SAS program :
data latin;
input row col trt yield;
cards;
...
2012-5-1 11:37 - anyme - SAS专版
请教PROC GLM里如何 输出R², 感谢!
3 个回复 - 3539 次查看
请教PROC GLM里如何 输出R² (coefficient of determination), 只会把solution算出的t值输出:
proc glm
class a;
model y=x a/solution;
ods output parameterestimates=
glmp;
run;
2011-1-18 01:41 - basswawa - SAS专版
ask for help with a question using proc GLM
2 个回复 - 1926 次查看
I'm analyzing a data set (given below) using the SAS codes:
proc glm data=par3;
class S P;
model y = V*S V*P / solution;
estimate 'C - L at V=0.05 & P=large' V*S 0.05 -0.05 V*P 0.05;
estimate 'C ...
2010-1-8 06:01 - jennyli1346 - SAS专版
[讨论]MANOVA & Proc GLM in SAS
0 个回复 - 4351 次查看
I'm doing a MANOVA two factors on SAS and I have a few doubts. Does anybody can help me?
1. The software takes all possible 2-2 comparisons, but I want just some of them. I'm trying to get a smaller ...
2005-9-25 07:59 - SASCHEN - SAS专版