Mplus code for mediation, moderation, and moderated mediation modelsModel 59: 1 or more mediators, in parallel if multiple (example uses 1), 1 moderators, which moderates all of the IV-Mediator path, the Mediator-DV path and the direct IV-DV path Example Variables: 1 predictor X, 1 mediator M, 1 moderator W, 1 outcome Y Preliminary notes: The code below assumes that
  Model Diagram: ![]()   Statistical Diagram: ![]()   Model Equation(s):
Y = b0 + b1M + b2MW + c1'X + c2'W + c3'XW
 
Algebra to calculate indirect and/or conditional effects by writing model as Y = a + bX:
Y = b0 + b1M + b2MW + c1'X + c2'W + c3'XW
Y = b0 + b1(a0 + a1X + a2W + a3XW) + b2(a0 + a1X + a2W + a3XW)W + c1'X + c2'W + c3'XW
Y = b0 + a0b1 + a1b1X + a2b1W + a3b1XW + a0b2W + a1b2XW + a2b2WW + a3b2XWW + c1'X + c2'W + c3'XW
Y = (b0 + a0b1 + a2b1W + a0b2W + a2b2WW + c2'W) + (a1b1 + a3b1W + a1b2W + a3b2WW + c1' + c3'W)X
One indirect effect(s) of X on Y, conditional on W:
a1b1 + a3b1W + a1b2W + a3b2WW = (a1 + a3W)(b1 + b2W)
One direct effect of X on Y, conditional on W:
c1' + c3'W
 
Mplus code for the model:
! Predictor variable - X
USEVARIABLES = X M W Y XW 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
! 1 moderator, 3 values for it
MODEL CONSTRAINT:
    LOW_W = #LOWW;   ! replace #LOWW in the code with your chosen low value of W
! Calc conditional indirect effects for each combination of moderator values     IND_LOWW = a1*b1 + a3*b1*LOW_W + a1*b2*LOW_W + a3*b2*LOW_W*LOW_W;     IMM_LOW = a3*b1 + a1*b2 + a3*b2*LOW_W; ! Calc conditional direct effects for each combination of moderator values
    DIR_LOWW = cdash1 + cdash3*LOW_W; ! Calc conditional total effects for each combination of moderator values
    TOT_LOWW = IND_LOWW + DIR_LOWW;
! Use loop plot to plot conditional indirect effect of X on Y for each combination of low, med, high moderator values
    PLOT(LOMOD MEDMOD HIMOD);
    LOOP(XVAL,1,5,0.1);
    LOMOD = IND_LOWW*XVAL; PLOT:
OUTPUT:
 
Return to Model Template index.
To cite this page and/or any code used, please use:
|
|
|
|
|
|
|
|