由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 跪求, proc mixed干啥一直报错??? 包子谢
相关主题
请教一个PROC MIXED做REPEATED MEASUREMENT问题请教一个proc glimmix的问题
如何解释OUTPUTwhat's wrong with Proc Reg???
SAS Proc Mixed Estimate for 3 way interaction包子急求翻译 SAS code
问问proc mixedproc glm lsmeans 问题
[合集] 这算什么DESIGNHow to make image.plot in sas
问个 proc mixed output 的问题output multiple files in a do loop
[Help] SAS Proc mixed有人作qtl mapping的吗?我现在有一个数据处理的问题。谢谢
请问 proc mixed 在什么情况下选用 random statement?请教如何用SAS处理这个RANDOM SAMPLING的问题
相关话题的讨论汇总
话题: genotype话题: lsmeans话题: time话题: ods话题: rep
进入Statistics版参与讨论
1 (共1页)
d****z
发帖数: 301
1
一直折腾不出来.好几个月了.
牛细胞生长情况, 有两种细胞,3个时间点,每个有两个重复.
想找出差异表达的基因...
结果一直疯狂报错:
warning: Stopped because of infinite likelihood.
跪求建议意见!!!!
proc mixed data=long;
class rep genotype time;
model y=rep genotype time genotype*time /outp=check;
random rep*time;
lsmeans genotype*time;
ods output tests3=results;
ods output lsmeans=lsmeans;
by gene;
run;
w*****n
发帖数: 375
2
remove rep from model statement
d****z
发帖数: 301
3
多谢!!
我也觉得rep不是fixed变量.老板建议这样的,我再去找他讨论下.
而且去掉了也不成,还是一样报错.
很奇怪!

【在 w*****n 的大作中提到】
: remove rep from model statement
w*****n
发帖数: 375
4
Your random statement might be wrong, and I suspect that you don't
have enough degrees of freedom to estimate so many parameters.What's
your sample size?
Generate variable "id", which has two reps, and try the following
simple model first:
proc mixed data=long;
class id genotype time;
model y = genotype time genotype*time /outp=check;
random intercept/sub = id;
lsmeans genotype*time;
ods output tests3=results;
ods output lsmeans=lsmeans;
by gene;
run;

【在 d****z 的大作中提到】
: 多谢!!
: 我也觉得rep不是fixed变量.老板建议这样的,我再去找他讨论下.
: 而且去掉了也不成,还是一样报错.
: 很奇怪!

w******4
发帖数: 488
5
I think this is a split-plot design, where genotype is the whole-plot factor
, time is the sub-plot factor. You can try this:
proc mixed data=long;
class rep genotype time;
model y=genotype time genotype*time /outp=check;
random rep(genotype);
lsmeans genotype*time;
ods output tests3=results;
ods output lsmeans=lsmeans;
by gene;
run;
1 (共1页)
进入Statistics版参与讨论
相关主题
请教如何用SAS处理这个RANDOM SAMPLING的问题[合集] 这算什么DESIGN
求教:SAS怎样实现限制必须经过某个点的GLM问个 proc mixed output 的问题
How to output score test statistic from PROC PHREG?[Help] SAS Proc mixed
也弱问一个SAS里面genotype/SNP variable recoding的问题请问 proc mixed 在什么情况下选用 random statement?
请教一个PROC MIXED做REPEATED MEASUREMENT问题请教一个proc glimmix的问题
如何解释OUTPUTwhat's wrong with Proc Reg???
SAS Proc Mixed Estimate for 3 way interaction包子急求翻译 SAS code
问问proc mixedproc glm lsmeans 问题
相关话题的讨论汇总
话题: genotype话题: lsmeans话题: time话题: ods话题: rep