楼主: smjjoy
28531 8

[问答] 交互作用不显著就不能做简单效应分析吗? [推广有奖]

  • 0关注
  • 0粉丝

学前班

80%

还不是VIP/贵宾

-

威望
0
论坛币
23 个
通用积分
0
学术水平
0 点
热心指数
0 点
信用等级
0 点
经验
20 点
帖子
1
精华
0
在线时间
4 小时
注册时间
2013-2-23
最后登录
2015-1-8

+2 论坛币
k人 参与回答

经管之家送您一份

应届毕业生专属福利!

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

经管之家联合CDA

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

感谢您参与论坛问题回答

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

+2 论坛币
有没有可能交互作用不显著,但是简单效应是有一个显著的?
我的是2*2的方差分析,两个因素(A、B)的主效应分别都显著,但是交互效应不显著。可是我还想要一个结果是希望能在A因素的一个水平下,B因素的两个水平之间是显著的;在A因素的另一个水平下,B因素的两个水平之间是不显著的。我运用了简单效应分析,结果也是这样的。但是我查看了一些统计学的书以及在论坛上看到,都说只有在交互作用显著条件下才能做简单效应分析,难道交互作用不显著就不能做简单效应分析吗?
求各位大神解释下交互作用不显著能不能做简单效应分析?如果不能,为什么?有没有别的方法可以让我能够做出这样的结果?
二维码

扫码加我 拉你入群

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

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

关键词:简单效应 效应分析 交互作用 方差分析 交互效应 统计学

已有 1 人评分论坛币 收起 理由
ReneeBK + 20 鼓励积极发帖讨论

总评分: 论坛币 + 20   查看全部评分

本帖被以下文库推荐

沙发
ReneeBK 发表于 2014-6-24 23:54:51 |只看作者 |坛友微信交流群
The answer to your question is to Use a Test of Simple Effects. This will produce a table comparing all pairs of levels of one factor, for each level of all the other factors. Simple Effects tests reveal the degree to which one factor is differentially effective at each level of a second factor. (For multi-way analyses, all combinations of levels of the other factors.) Sometimes these are referred to as Simple Main Effects.

This test can be performed with SPSS General Linear Model, using the Estimated Marginal Means option. Unfortunately, at this time to obtain a Simple Effects Test does require the use of SPSS command syntax. Here, we will describe how to make the necessary modifications to syntax pasted from the General Linear Model->Univariate dialog box.

Return to the General Linear Model->Univariate dialog. Assuming that you just ran your ANOVA model and observed the significant interaction in the output, the dialog will have the dependent variables and factors already set up. (If not, set up the model at this time.) Click on the Options... button. In the box labeled "Estimated Marginal Means", you should see a list of "Factors and Factor Interactions". Choose the interaction(s) for which you wish to request Simple Effects, and click the triangle button to add them to the list "Display Means for:".

Even if you are not interested in any of the main effects, for convenience add one of the main effects, place a check in the box labeled "Compare main effects", and choose your preferred option for "Confidence interval adjustment". (Leave this as LSD(none) if you don't have a preference. Note that since Bonferroni simply multiplies by the number of comparisons, it will be excessively conservative for most situations which require simple effects. This leaves a choice between SIDAK or none.)

Now click the Continue button to return to the Univariate dialog box. Do not click OK, instead click Paste. This will open a Syntax window, where you should find something like this:


UNIANOVA
response BY drug sex
/METHOD = SSTYPE(3)
/INTERCEPT = INCLUDE
/EMMEANS = TABLES(drug) COMPARE ADJ(LSD)
/EMMEANS = TABLES(drug*sex)
/CRITERIA = ALPHA(.05)
/DESIGN = drug sex drug*sex
.


The subcommand /EMMEANS = TABLES(drug*sex) is the one we need to modify; we need to specify the factor for which we want pairwise comparisons.

Copy COMPARE ADJ(LSD) from the subcommand /EMMEANS = TABLES(drug), and paste it after the interaction, so: /EMMEANS = TABLES(drug*sex) COMPARE ADJ(LSD). Now, after the word COMPARE, type drug enclosed in parentheses:


/EMMEANS = TABLES(drug*sex) COMPARE(drug) ADJ(LSD)


Discard the request for a table of the drug main effect alone if you wish: it was convenient to request it to simplify cut-and-paste operations. The completed syntax should be as follows:


UNIANOVA
response BY drug sex
/METHOD = SSTYPE(3)
/INTERCEPT = INCLUDE
/EMMEANS = TABLES(drug*sex) COMPARE(drug) ADJ(LSD)
/CRITERIA = ALPHA(.05)
/DESIGN = drug sex drug*sex .


Now you can use the menu Run->All to re-run your analysis, which will now include a Test of Simple Effects.

-----------------------------------------

For the hypothetical syntax above, suppose that drug has three levels, while sex has the customary two. If the three drugs are A, B, and C, we will see a table which will test, for Females, the hypotheses that there is no difference between A and B, A and C, B and A, B and C, C and A, C and B, and then the same six hypotheses but for Males. (Half the tests are redundant, because they are for the same pair but in the opposite order, so the difference is the same but with the opposite sign.) Since we are assuming that there is a significant interaction, we anticipate that there will be some difference in the profiles of the two genders.

We can request as many /EMMEANS subcommands as we wish, so we could simultaneously include

/EMMEANS = TABLES(drug*sex) COMPARE(sex) ADJ(LSD)

as part of the same analysis. This time there would be three pairs of tests, Female versus Male, then Male versus Female (redundant, with the opposite sign). Again, since we assume that a significant interaction motivated this test, we anticipate observing some difference in the profiles. For example, there might be no difference between the genders for one of the drugs, but a significant difference for the other two. Or the differences between Females and Males might be positive for one drug, but negative for another. Or the differences might be larger for one gender...

The three adjustments available for the significances which are available in EMMEANS are:

LSD(none), which is Fisher's Least Significant Differences, or unadjusted probabilities;

Bonferroni, which simply multiplies the significance by the number of comparisons (with a maximum significance of 1). Bonferroni will be too conservative if more than a few comparisons are made;

Sidak. Since there will often be too many comparisons for Bonferroni to be effective, this is often the only viable option if any adjustment to the probabilities is desired.

There are other adjustments, for example Tukey or Scheffe, which are valid for two-way interactions in a univariate analysis of variance. Currently, EMMEANS supports only the above three because they are also valid for models which include covariates, and in repeated measures models, both for main effects as well as for interactions which might mix between-subject and within-subject factors

使用道具

藤椅
ReneeBK 发表于 2014-6-25 00:07:25 |只看作者 |坛友微信交流群
https://bbs.pinggu.org/forum.php?mod=viewthread&tid=3103707&pid=25439372&page=1&extra=#pid25439372

使用道具

板凳
gxnnhgm66 发表于 2014-6-29 20:32:42 |只看作者 |坛友微信交流群
可以的,分析主效应即可。
已有 1 人评分论坛币 收起 理由
admin_kefu + 10 热心帮助其他会员

总评分: 论坛币 + 10   查看全部评分

使用道具

报纸
Sssuperolivia 发表于 2018-7-10 21:49:52 |只看作者 |坛友微信交流群
我也遇到了同样的问题,楼主是怎么解决的呢?

使用道具

地板
GDYLS 发表于 2018-10-9 16:41:10 |只看作者 |坛友微信交流群
Sssuperolivia 发表于 2018-7-10 21:49
我也遇到了同样的问题,楼主是怎么解决的呢?
同样的问题,兄弟解决了没有

使用道具

7
Sssuperolivia 发表于 2018-10-15 17:35:03 |只看作者 |坛友微信交流群
GDYLS 发表于 2018-10-9 16:41
同样的问题,兄弟解决了没有
检查了一下数据,不符合正态分布,后来用的非参数检验

使用道具

8
feitianzhe 发表于 2019-1-17 09:52:07 |只看作者 |坛友微信交流群
主效应显著,交互效应不显著,不必做简单效应分析,做主效应分析。
主效应显著,交互效应显著,只做简单效应分析。不必分析主效应。

使用道具

9
imcowei 发表于 2019-6-27 15:11:55 |只看作者 |坛友微信交流群
feitianzhe 发表于 2019-1-17 09:52
主效应显著,交互效应不显著,不必做简单效应分析,做主效应分析。
主效应显著,交互效应显著,只做简单效 ...
请问主效应分析就是对某因素的两个水平做t检验吗?(统计小白求指教)

使用道具

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

本版微信群
加好友,备注cda
拉您进交流群

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

GMT+8, 2024-12-18 22:23