Mplus code for mediation, moderation, and moderated mediation modelsModel 15: 1 or more mediators, in parallel if multiple (example uses 1), 1 moderator of both Mediator-DV and direct IV-DV path Example Variables: 1 predictor X, 1 mediator M, 1 moderator V, 1 outcome Y Preliminary notes: The code below assumes that
  Model Diagram: ![]()   Statistical Diagram: ![]()   Model Equation(s):
Y = b0 + b1M + b2MV + c1'X + c2'V + c3'XV
 
Algebra to calculate indirect and/or conditional effects by writing model as Y = a + bX:
Y = b0 + b1M + b2MV + c1'X + c2'V + c3'XV
Y = b0 + b1(a0 + a1X) + b2(a0 + a1X)V + c1'X + c2'V + c3'XV
Y = b0 + a0b1 + a1b1X + a0b2V + a1b2XV + c1'X + c2'V + c3'XV
Y = (b0 + a0b1 + c2'V + a0b2V) + (a1b1 + a1b2V + c1' + c3'V)X
One indirect effect(s) of X on Y, conditional on V:
a1b1 + a1b2V = a1(b1 + b2V)
One direct effect of X on Y, conditional on V:
c1' + c3'V
 
Mplus code for the model:
! Predictor variable - X
USEVARIABLES = X M V Y MV XV;
! 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_V = #LOWV;   ! replace #LOWV in the code with your chosen low value of V
! Calc conditional indirect effects for each combination of moderator values     IND_LOWV = a1*b1 + a1*b2*LOW_V;     IMM = a1*b2;
! Calc conditional direct effects for each combination of moderator values
    DIR_LOWV = cdash1 + cdash3*LOW_V; ! Calc conditional total effects for each combination of moderator values
    TOT_LOWV = IND_LOWV + DIR_LOWV;
! 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_LOWV*XVAL; PLOT:
OUTPUT:
 
Return to Model Template index.
To cite this page and/or any code used, please use:
|
|
|
|
|
|
|
|