Interpreting Models with Multiple Interaction Terms: Gender, Weight, and Height

  • Context: Graduate 
  • Thread starter Thread starter FallenApple
  • Start date Start date
  • Tags Tags
    Interaction Terms
Join the discussion
Ask a follow-up here, or get your own question answered by working scientists, mathematicians and engineers — people, not an autocomplete.
Real named experts · corrections over time · the nuance an AI answer skips
2 replies · 1K views
FallenApple
Messages
564
Reaction score
61
If there are two interaction terms in a single model, does that mess up the interpretation of it? For example, Gender*Weight and Gender*Height.

Say the model is Y~Weight+Height +Gender +Gender*Weight+Gender*Height.

Would I simply interpret it as usual? That is, "The difference in mean response for a one unit increase in weight differs between the genders by the value of the interaction coefficient between weight and gender for a subpopulation of people with Height=some fixed value"?I've heard that having multiple interactions isn't good because it might complicate the interpetability. I'm not sure how though which is why I'm asking.

Also, isn't the power higher in a model with two interaction if there are in fact two interactions vs having a separate model for each interaction term?
 
Last edited:
Physics news on Phys.org
My understanding is that, if the fitted coefficients are B1 to B5 from left to right (ignoring the constant term B0) the interpretation is as follows:

sensitivity of Y to Weight is (B1 + B4 * Gender), so the sensitivity varies by Gender
sensitivity of Y to Height is (B2 + B5 * Gender), so the sensitivity varies by Gender
sensitivity of Y to Gender is (B3 + B4 * Weight + B5 * Height), so the sensitivity varies by Weight and Height

The interaction terms tell us the sensitivities of the sensitivities.
 
  • Like
Likes   Reactions: FallenApple
andrewkirk said:
My understanding is that, if the fitted coefficients are B1 to B5 from left to right (ignoring the constant term B0) the interpretation is as follows:

sensitivity of Y to Weight is (B1 + B4 * Gender), so the sensitivity varies by Gender
sensitivity of Y to Height is (B2 + B5 * Gender), so the sensitivity varies by Gender
sensitivity of Y to Gender is (B3 + B4 * Weight + B5 * Height), so the sensitivity varies by Weight and Height

The interaction terms tell us the sensitivities of the sensitivities.

Got it. Now to interpret say effect of weight across gender, would I have to fix the height? From a mathematical point of view, I could just fix it and it would drop out. But it could be a confounder so I'm not sure.

if height is x=a

then

B3 + B4 * Weight + B5 * a

Then a unit difference in weight gives rise to B4. So holding weight fixed, the difference in mean response for unit increase in weight is B4. Then height seemingly does matter.