由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - proc glm questions
相关主题
SAS高手请进:20包子怎样得到estimated prob. of event in SAS Logistic Reg
请教一sas programmmy = a + b * (c ^ x)
SAS question using PROC SQL 高手请进, 包子答谢请教PROC HAPLOTYPE有关问题
请教一个SAS SQL的问题Proc mixed contrast
请教SAS SQLhow to draw an area in sas
对于 interval censor 的情况怎么写SAS code呀?如何解释OUTPUT
使用proc panel估计panel data请教个关于在sas中进行gmm estimate的问题
请教一下sas proc logistic里contrast statement的用法SAS Proc Mixed Estimate for 3 way interaction
相关话题的讨论汇总
话题: trt话题: proc话题: treatment话题: arm话题: glm
进入Statistics版参与讨论
1 (共1页)
a*******g
发帖数: 80
1
I have a group of patients, 2 trt arms and two centers. the outcome is a
continuous variable. I am interested the effect of trt but like to control
the effect of centers. Here is the code I used:
proc glm data=test;
class recon treatment_arm;
model scores=treatment_arm|recon/ss3;
estimate "trt diff"
treatment_arm 1 -1
treatment_arm*recon 0.5 0.5 -0.5 -0.5;
run;
But the log returned me with
"NOTE: trt diff is not estimable.". (no error message)
When I use the proc mixed, it works fine. What is the problem?
Thank you!
p******p
发帖数: 13
2
问了下自己这边的统计师,明确的random effect最好用proc mixed,proc glm貌似是
当成fixed effect处理的。
1 (共1页)
进入Statistics版参与讨论
相关主题
SAS Proc Mixed Estimate for 3 way interaction请教SAS SQL
Proc mixed 显示non est对于 interval censor 的情况怎么写SAS code呀?
在sas里,如何把estimated的parameters放到predictive model里面?使用proc panel估计panel data
proc genmod 结果的问题请教一下sas proc logistic里contrast statement的用法
SAS高手请进:20包子怎样得到estimated prob. of event in SAS Logistic Reg
请教一sas programmmy = a + b * (c ^ x)
SAS question using PROC SQL 高手请进, 包子答谢请教PROC HAPLOTYPE有关问题
请教一个SAS SQL的问题Proc mixed contrast
相关话题的讨论汇总
话题: trt话题: proc话题: treatment话题: arm话题: glm