由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - For proc glm, how do I specify within-subject effect and between-subject effect for ANOVA analysis?
相关主题
what's wrong with Proc Reg???请教一下sas proc ANOVA.
关于实验设计的问题这是什么design呀?repeated measure and nested design?
统计菜鸟求统计分析方法有人熟悉hierarchical linear model吗?
[Help] SAS Proc mixed请教一个ANOVA的问题!
clinical trial的subgroup analysis必须是pre-specified的?报一个Apple的Offer和面经
请教大家一个关于check normality的问题问个统计的问题
medical device 和 drug 的clinical trial 有什么不同问一个anova里关于model identifiability的问题
how to do nonparametric nested ANOVA in Rhow to test effects of different denominator
相关话题的讨论汇总
话题: effect话题: subject话题: anova话题: glm话题: specify
进入Statistics版参与讨论
1 (共1页)
d**********2
发帖数: 14
1
Hi,
在用SAS做ANOVA analysis的时候(我用的是proc glm), 怎么样specify哪些variable是
within-subject effect, 哪些variable是between-subject effect? 我知道所有
repeated measures variables都是within-subject effect, 可是我的data不属于这种
情况啊, 而且如果有多于两个viariables属于within-subject effects, 这个repeated
option很不好用啊, 没办法specify两个或者两个以上的repeated measures
variables.
万分感激!
Laomao
a**j
发帖数: 60
2
你要知道是random effect 还是fixed effect, 用factorial model 还是nested model
between-subject effect
within-subject effect
with group, between group?
如果是的话, 用nested model
一个women right 的题 的部分SAS code 及解释
/*Conduct anova specifies that both ciri and wecon are categorial variable,
nest model ciri is nested with wecon specifies that ciri is random variable
. Conduct model diagnostics by plots=diagnostics option*/
ods graphics on;
proc glm data=torture1 PLOTS=DIAGNOSTICS ;
class ciri wecon;
model physint1=wecon ciri(wecon)/e1 e2 e3;
random ciri(wecon);
run;
ods graphics off;
1 (共1页)
进入Statistics版参与讨论
相关主题
how to test effects of different denominatorclinical trial的subgroup analysis必须是pre-specified的?
lm中的main effect请教大家一个关于check normality的问题
[合集] 请问: 什么是ad-hoc analysismedical device 和 drug 的clinical trial 有什么不同
[合集] 拿到CSU, UIOWA统计offer,请问选择哪个?how to do nonparametric nested ANOVA in R
what's wrong with Proc Reg???请教一下sas proc ANOVA.
关于实验设计的问题这是什么design呀?repeated measure and nested design?
统计菜鸟求统计分析方法有人熟悉hierarchical linear model吗?
[Help] SAS Proc mixed请教一个ANOVA的问题!
相关话题的讨论汇总
话题: effect话题: subject话题: anova话题: glm话题: specify