Im applying a regression to test the association between maternal postpardum depression score (maternal_postpardum_score) and functional connectivity changes (FC) in the brain - both continuous. I applied a moderator, adversity (ADV), which has two levels 0 for no adversity and 1 for adversity - a categorical variable. A moderator effect was included to test if there are any significant interaction effects.
As shown below:
compmem1<- lm(FC ~ maternal_postpardum_score*ADV, data=mat_adv)
summary(compmem1)
Call:
lm(formula = FC ~ maternal_postpardum_score * ADV, data = mat_adv)
Residuals:
Min 1Q Median 3Q Max
-0.14579 -0.05758 -0.02837 0.08501 0.13421
Coefficients:
Estimate Std. Error t value Pr(>|t|)
(Intercept) 0.04506 0.03700 1.218 0.2513
maternal_postpardum_score -0.03524 0.01698 -2.076 0.0647 .
ADVyes 0.17281 0.05644 3.062 0.0120 *
maternal_postpardum_score:ADVyes 0.02385 0.02062 1.157 0.2743
---
Signif. codes: 0 ‘***’ 0.001 ‘**’ 0.01 ‘*’ 0.05 ‘.’ 0.1 ‘ ’ 1
Residual standard error: 0.104 on 10 degrees of freedom
Multiple R-squared: 0.6177, Adjusted R-squared: 0.5031
F-statistic: 5.387 on 3 and 10 DF, p-value: 0.01823
However, there were no statistically significant main effects nor interaction effects.. ADVyes was significant. What can be said about this? Can I say that there is no interaction effect but the moderator is significant? I'm trying to interpret this relationship.