楼主: SASCHEN
2429 1

[讨论]NLMIXED hypothesis test: x1 = x2 = x3 [推广有奖]

  • 0关注
  • 0粉丝

硕士生

8%

还不是VIP/贵宾

-

TA的文库  其他...

Social Media Mining

深度學習(DEEP LEARNING)

HTML

威望
0
论坛币
2296 个
通用积分
3.5500
学术水平
4 点
热心指数
5 点
信用等级
4 点
经验
912 点
帖子
161
精华
0
在线时间
43 小时
注册时间
2005-9-25
最后登录
2022-10-29

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

求职就业群
赵安豆老师微信:zhaoandou666

经管之家联合CDA

送您一个全额奖学金名额~ !

感谢您参与论坛问题回答

经管之家送您两个论坛币!

+2 论坛币

Hello,

I'm constucting a nonlinear mixed model of some psycholinguistic data, with a binary dependent variable (correct/incorrect), and an independent three-level factor (verbtype) crossed with an independent two-level factor (sex). It'd be useful to be able to report a single statistic indicating whether the estimates for all six "cells" are non-different, analogous to the F-test of the interaction in a 3x2 ANOVA. In PROC MIXED this comes out in the Type 3 tests. But I can't figure out how to do this in NLMIXED, where the three-level factor has to be coded as two dummy-coded variables (real and reg).

Any advice? Code is below, but I think it's pretty standard.

Thanks, Chris

proc nlmixed data=input; parms intercept=1 real_c=.1 reg_c=.1 sex_c=.1 sex_real_c=.1 sex_reg_c=.1 log_subj_var=0; /* use exp(log) below to avoid negative variance estimates */

eta = intercept + real*real_c + reg*reg_c + sex*sex_c + sex*real*sex_real_c + sex*reg*sex_reg_c + rand_subj; /* random effect of subject */

/* Logistic function defines p in terms of eta */ /* It's the inverse of logit, which is ln(p/1-p). */ expeta = exp(eta); p = expeta / (1+expeta);

model Correct ~ binary(p); random rand_subj ~ normal(0, exp(log_subj_var)) subject=subject; run;

二维码

扫码加我 拉你入群

请注明:姓名-公司-职位

以便审核进群资格,未注明则拒绝

关键词:HYPOTHESIS nlmixed thesis Mixed test 讨论 test nlmixed HYPOTHESIS

沙发
SASCHEN 发表于 2005-9-25 08:06:00 |只看作者 |坛友微信交流群

You can test the 2 df interaction term by testing the effects of sex*real and sex*reg jointly. A joint test can be conducted employing the CONTRAST statement. It is as simple as adding the statement contrast "Sex*Verb" sex_real_c, sex_reg_c;

Just before your RUN statement. The 2 df test for the main effect of verb would be constructed similarly.

Dale

使用道具

您需要登录后才可以回帖 登录 | 我要注册

本版微信群
加好友,备注jltj
拉您入交流群

京ICP备16021002-2号 京B2-20170662号 京公网安备 11010802022788号 论坛法律顾问:王进律师 知识产权保护声明   免责及隐私声明

GMT+8, 2024-4-30 17:14