Frame is a var with 3 categories: neutral (baseline), N, and C. Effect of C on outcome Qa (measured 1-7) is hypothesized and found to be negative (with a bunch of fixed effects):
Alignment is another var with 3 categories: independent (baseline), co-partisan, opposite-party. We interact it with frame, in order to examine how the interaction changes C’s effect on Qa. This post is about how to interpret this interaction.
Observe that C##opposite-party interaction term is positive, whereas C’s conditional term is negative, and C’s unconditional effect too was negative earlier. Here are the marginal effects from the interaction:
Observe that for frame 1 (which is C) the discrete change from the base level (-.22) is smaller in magnitude under opposite party source, compared to the independent source condition (-.45). As seen below, this difference is also statistically significant (careful about the signs here: this time the "contrast" is displayed, which is positive, since it is in the direction of offsetting the otherwise negative effect of C).
Now the question:
- Researcher A argues that opposite-party interaction mitigates the (negative) effect of C on Qa
- Researcher B argues that opposite-party interaction enhances the (negative) effect of C on Qa,
- Researcher C argues that the (negative) effect of C on Qa does not vary across categories of alignment.
- Researcher D argues that in light of these quantities, no argument can be made in ordinary language, because words could mean anything.
Which interpretation is correct?
Note: This post is a summary of a question asked elsewhere in this forum, which received replies with a lot of text, and somewhat got buried under a philosophy of science discussion. Seeking for more practical advice. Thank you in advance.
Code:
reg Qa ib3.frame ib2.oper i.order i.country2, cluster( ResponseId )
HTML Code:
| Robust
Qa | Coefficient std. err. t P>|t| [95% conf. interval]
-------------+----------------------------------------------------------------
frame |
C | -.3631873 .0385492 -9.42 0.000 -.4387688 -.2876058
N | -.1823204 .0369146 -4.94 0.000 -.254697 -.1099438
Code:
reg Qa ib3.frame##i.alignment ib2.oper i.order i.country2, cluster( ResponseId )
HTML Code:
| Robust
Qa | Coefficient std. err. t P>|t| [95% conf. interval]
-------------------------+----------------------------------------------------------------
frame |
C | -.450276 .0725978 -6.20 0.000 -.5926267 -.3079253
N | -.2098803 .0717897 -2.92 0.003 -.3506466 -.069114
|
alignment |
Co-partisan source | .0471406 .065567 0.72 0.472 -.081424 .1757052
Opposite party source | -.224524 .0666856 -3.37 0.001 -.3552821 -.0937659
|
frame#alignment |
C#Co-partisan source | -.0078699 .1034016 -0.08 0.939 -.2106212 .1948813
C#Opposite party source | .2276461 .1024118 2.22 0.026 .0268355 .4284566
N#Co-partisan source | -.0797576 .100597 -0.79 0.428 -.2770096 .1174944
N#Opposite party source | .109464 .1014582 1.08 0.281 -.0894767 .3084046
Code:
margins alignment, dydx(frame)
| Delta-method
| dy/dx std. err. t P>|t| [95% conf. interval]
-----------------------+----------------------------------------------------------------
1.frame |
alignment |
Independent source | -.450276 .0725978 -6.20 0.000 -.5926267 -.3079253
Co-partisan source | -.4581459 .0721426 -6.35 0.000 -.5996041 -.3166877
Opposite party source | -.2226299 .0741549 -3.00 0.003 -.3680339 -.0772258
Code:
margins alignment, dydx(frame) pwcompare
HTML Code:
| Contrast Delta-method Unadjusted
| dy/dx std. err. [95% conf. interval]
---------------------------------------------+------------------------------------------------
1.frame |
alignment |
Co-partisan source vs Independent source | -.0078699 .1034016 -.2106212 .1948813
Opposite party source vs Independent source | .2276461 .1024118 .0268355 .4284566
Opposite party source vs Co-partisan source | .235516 .1036335 .03231 .438722
- Researcher A argues that opposite-party interaction mitigates the (negative) effect of C on Qa
- Researcher B argues that opposite-party interaction enhances the (negative) effect of C on Qa,
- Researcher C argues that the (negative) effect of C on Qa does not vary across categories of alignment.
- Researcher D argues that in light of these quantities, no argument can be made in ordinary language, because words could mean anything.
Which interpretation is correct?
Note: This post is a summary of a question asked elsewhere in this forum, which received replies with a lot of text, and somewhat got buried under a philosophy of science discussion. Seeking for more practical advice. Thank you in advance.

Comment