Mplus code for mediation, moderation, and moderated mediation modelsModel 62: 1 or more mediators, in parallel if multiple (example uses 1), 2 moderators, both moderating both the IV- Mediator path, 1 of which also moderates the Mediator-DV path, the with the other moderating the direct IV-DV path Example Variables: 1 predictor X, 1 mediator M, 2 moderators W, Z, 1 outcome Y Preliminary notes: The code below assumes that
  Model Diagram: ![]()   Statistical Diagram: ![]()   Model Equation(s):
Y = b0 + b1M + b2W + b3MW + c1'X + c2'Z + c3'XZ
 
Algebra to calculate indirect and/or conditional effects by writing model as Y = a + bX:
Y = b0 + b1M + b2W + b3MW + c1'X + c2'Z + c3'XZ
Y = b0 + b1(a0 + a1X + a2W + a3Z + a4XW + a5XZ) + b2W + b3(a0 + a1X + a2W + a3Z + a4XW + a5XZ)W + c1'X + c2'Z + c3'XZ
Y = b0 + a0b1 + a1b1X + a2b1W + a3b1Z + a4b1XW + a5b1XZ + b2W + a0b3W + a1b3XW + a2b3WW + a3b3ZW + a4b3XWW + a5b3XZW + c1'X + c2'Z + c3'XZ
Y = (b0 + a0b1 + a2b1W + a3b1Z + b2W + a0b3W + a2b3WW + a3b3ZW + c2'Z) + (a1b1 + a4b1W + a5b1Z + a1b3W + a4b3WW + a5b3ZW + c1' + c3'Z)X
One indirect effect(s) of X on Y, conditional on W, Z:
a1b1 + a4b1W + a5b1Z + a1b3W + a4b3WW + a5b3ZW = (a1 + a4W + a5Z)(b1 + b3W)
One direct effect of X on Y, conditional on Z:
c1' + c3'Z
 
Mplus code for the model:
! Predictor variable - X
USEVARIABLES = X M W Z Y XW XZ MW;
! Create interaction terms
DEFINE:
ANALYSIS:
! In model statement name each path and intercept using parentheses
MODEL:
   Y ON X (cdash1);
   [M] (a0);
! Use model constraint subcommand to test conditional indirect effects
! 2 moderators, 3 values for each, gives 9 combinations
MODEL CONSTRAINT:
    LOW_W = #LOWW;   ! replace #LOWW in the code with your chosen low value of W
    LOW_Z = #LOWZ;   ! replace #LOWZ in the code with your chosen low value of Z
! Calc conditional indirect effects for each combination of moderator values
    ILOW_LOZ = a1*b1 + a4*b1*LOW_W + a5*b1*LOW_Z + a1*b3*LOW_W +     ILOW_MEZ = a1*b1 + a4*b1*LOW_W + a5*b1*MED_Z + a1*b3*LOW_W +     ILOW_HIZ = a1*b1 + a4*b1*LOW_W + a5*b1*HIGH_Z + a1*b3*LOW_W + ! Calc conditional direct effects for each combination of moderator values
    DIR_LOWZ = cdash1 + cdash3*LOW_Z; ! Calc conditional total effects for each combination of moderator values
    TLOW_LOZ = ILOW_LOZ + DIR_LOWZ;
    TLOW_MEZ = ILOW_MEZ + DIR_MEDZ;
    TLOW_HIZ = ILOW_HIZ + DIR_HIZ;
! Use loop plot to plot conditional indirect effect of X on Y for each combination of low, med, high moderator values
    PLOT(PLOW_LOZ PMEW_LOZ PHIW_LOZ PLOW_MEZ PMEW_MEZ PHIW_MEZ     LOOP(XVAL,1,5,0.1);
    PLOW_LOZ = ILOW_LOZ*XVAL;     PLOW_MEZ = ILOW_MEZ*XVAL;     PLOW_HIZ = ILOW_HIZ*XVAL; PLOT:
OUTPUT:
 
Return to Model Template index.
To cite this page and/or any code used, please use:
|
|
|
|
|
|
|
|