由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - proc mixed multivariate regression的参数
相关主题
求助:有用过sas proc mixed里面repeated statement的吗?Re: Questions on REML?
请教:Repeated measures ANOVA (SAS proc mix)Repeated measure ANOVA 后的 post hoc 的问题
[合集] 这算什么DESIGN问个关于GLS的问题
CS和AR covariance structure怎么求逆呢?包子请教一个SAS问题
[Help] SAS Proc mixed再问multinomial logit
再问proc mixed。请教simultaneous equation system
问问proc mixed关于multivariate repeated measurments model 的H0
请教一个PROC MIXED做REPEATED MEASUREMENT问题Are these two tests the same thing?
相关话题的讨论汇总
话题: cartype话题: repeated话题: mixed话题: proc
进入Statistics版参与讨论
1 (共1页)
R******d
发帖数: 1436
1
请看网上的列子:
http://courses.ttu.edu/isqs5349-westfall/images/5349/Multivaria
proc mixed method=reml; /* Performs Multivariate Regression Analysis */
/* Identical to separate OLS models */
/* Method=REML is "restricted" ML, adjusted for df
*/
class cartype month;
model sales = cartype cartype*ppggas cartype*intinv/noint s ddfm=satterth;
repeated /subject=month type=un r=1 rcorr=1;
run;
如果写成:
class cartype;
repeated cartype/subject=month type=un rcorr;
哪个合理一些?结果有点区别,因为哑变量就不同了。
s*r
发帖数: 2757
2
下面那个比较好
R******d
发帖数: 1436
3
可以详细说下区别么

【在 s*r 的大作中提到】
: 下面那个比较好
s*r
发帖数: 2757
4
300wb? or you can check the sas doc for repeated statement

【在 R******d 的大作中提到】
: 可以详细说下区别么
R******d
发帖数: 1436
5
哈哈,你这个家伙好像之前就讹过我一次吧。
你贴个详尽的回答,我给200。给有用的sas doc链接给100。如何?
看过一些doc,所以第二种是我觉得对的写出来。因为和人家给的例子不同,所以来问。

【在 s*r 的大作中提到】
: 300wb? or you can check the sas doc for repeated statement
s*r
发帖数: 2757
6
不行不行,你有钱又懒,一分也不能少
再说我给的提示已经非常直接了

问。

【在 R******d 的大作中提到】
: 哈哈,你这个家伙好像之前就讹过我一次吧。
: 你贴个详尽的回答,我给200。给有用的sas doc链接给100。如何?
: 看过一些doc,所以第二种是我觉得对的写出来。因为和人家给的例子不同,所以来问。

R******d
发帖数: 1436
7
好吧,那你给得出很详细的说明。
如果只是是要我看mixed procedure,那就是流氓。。。

【在 s*r 的大作中提到】
: 300wb? or you can check the sas doc for repeated statement
s*r
发帖数: 2757
8
the following text are from sas doc for the repeated effect
For many repeated measures models, no repeated effect is required in the
REPEATED statement. ... In this case, the repeated measures data must be
similarly ordered for each subject, and you must indicate all missing
response variables with periods in the input data set unless they all fall
at the end of a subject’s repeated response profile. These requirements are
necessary in order to inform PROC MIXED of the proper location of the
observed repeated responses.
Specifying a repeated effect is useful when you do not want to indicate
missing values with periods in the input data set.
所以我说下面一种好

【在 R******d 的大作中提到】
: 好吧,那你给得出很详细的说明。
: 如果只是是要我看mixed procedure,那就是流氓。。。

1 (共1页)
进入Statistics版参与讨论
相关主题
Are these two tests the same thing?[Help] SAS Proc mixed
大家看看这个数据该怎么分析(有包子)?再问proc mixed。
on site被拒,讨论一下致命的一个问题吧问问proc mixed
求助多元统计问题请教一个PROC MIXED做REPEATED MEASUREMENT问题
求助:有用过sas proc mixed里面repeated statement的吗?Re: Questions on REML?
请教:Repeated measures ANOVA (SAS proc mix)Repeated measure ANOVA 后的 post hoc 的问题
[合集] 这算什么DESIGN问个关于GLS的问题
CS和AR covariance structure怎么求逆呢?包子请教一个SAS问题
相关话题的讨论汇总
话题: cartype话题: repeated话题: mixed话题: proc