Hi all,
I am trying to construct a mediation model with two independent variables (X1 and X2), one mediator (M), and one outcome (Y) - with the generic syntax below:
'
# regressions -
M ~ a1*X1 + a2*X2
Y ~ b*M + X1 + X2
# covariance -
X1 ~~ X2
# indirect effects -
IDE_X1 := a1*b
IDE_X2 := a2*b
'
(1.) Is it possible to compare the two indirect effects (i.e., whether one is stronger than the other)? If so, how should I go about doing so? Would it be to add 'contrast := IDE_X1 - IDE_X2' or 'contrast := IDE_X2 - IDE_1', which other posts have done to compare the indirect effects of multiple different mediators, but not of different independent variables? If there are other alternative/additional approaches to extract and assess the relative contributions between X1 versus X2, please advise.
(2.) Also, would the option of equality constraints (i.e., 'IDE_X1 == IDE_X2' or 'a1 == a2') be appropriate?
Thank you so much!