Mplus code for mediation, moderation, and moderated mediation modelsModel 21 (latent variable version): 1 or more mediators, in parallel if multiple (example uses 1), 2 moderators, 1 moderating the IV-Mediator path, 1 moderating the Mediator-DV path Example Variables: 1 latent predictor X measured by 4 observed variables X1-X4, 1 latent mediator M measured by 4 observed variables M1-M4, 2 latent moderators W and V, each measured by sets of 4 observed variables W1-W4 and V1-V4 respectively, 1 latent outcome Y measured by 4 observed variables Y1-Y4 Preliminary notes: The code below assumes that
  Model Diagram (factor indicator variables omitted for space/clarity reasons): ![]()   Statistical Diagram (factor indicator variables omitted for space/clarity reasons): ![]()   Model Equation(s):
Y = b0 + b1M + b2V + b3MV + c'X
 
Algebra to calculate indirect and/or conditional effects by writing model as Y = a + bX:
Y = b0 + b1M + b2V + b3MV + c'X
Y = b0 + b1(a0 + a1X + a2W + a3XW) + b2V + b3(a0 + a1X + a2W + a3XW)V + c'X
Y = b0 + a0b1 + a1b1X + a2b1W + a3b1XW + b2V + a0b3V + a1b3XV + a2b3VW + a3b3XWV + c'X
Y = (b0 + a0b1 + a2b1W + b2V + a0b3V + a2b3VW) + (a1b1 + a3b1W + a1b3V + a3b3WV + c')X
One indirect effect(s) of X on Y, conditional on W, V:
a1b1 + a3b1W + a1b3V + a3b3WV = (a1 + a3W)(b1 + b3V)
One direct effect of X on Y:
c'
 
Mplus code for the model:
! Latent predictor variable X measured by X1-X4
USEVARIABLES = X1 X2 X3 X4 M1 M2 M3 M4 ANALYSIS:
! In model statement first state measurement model
MODEL:
! Measurement model
 
  W@1;
  V@1;
! Create latent interactions
! Fit structural model and name parameters
   Y ON X (cdash);
   M ON X (a1);
! Use model constraint subcommand to test conditional indirect effects
! 2 moderators, 3 values for each, gives 9 combinations
MODEL CONSTRAINT:
    LOW_W = -1;   ! -1 SD below mean value of W
    LOW_V = -1;   ! -1 SD below mean value of V
! Calc conditional indirect effects for each combination of moderator values
    ILOW_LOV = a1*b1 + a3*b1*LOW_W + a1*b3*LOW_V + a3*b3*LOW_W*LOW_V;
    ILOW_MEV = a1*b1 + a3*b1*LOW_W + a1*b3*MED_V + a3*b3*LOW_W*MED_V;
    ILOW_HIV = a1*b1 + a3*b1*LOW_W + a1*b3*HIGH_V + a3*b3*LOW_W*HIGH_V;
! Calc conditional total effects for each combination of moderator values
    TLOW_LOV = ILOW_LOV + cdash;
    TLOW_MEV = ILOW_MEV + cdash;
    TLOW_HIV = ILOW_HIV + cdash;
! Use loop plot to plot conditional indirect effect of X on Y for each combination of low, med, high moderator values
    PLOT(PLOW_LOV PMEW_LOV PHIW_LOV PLOW_MEV PMEW_MEV PHIW_MEV     LOOP(XVAL,-3,3,0.1);
    PLOW_LOV = ILOW_LOV*XVAL;     PLOW_MEV = ILOW_MEV*XVAL;     PLOW_HIV = ILOW_HIV*XVAL; PLOT:
OUTPUT:
 
Return to Model Template index.
To cite this page and/or any code used, please use:
|
|
|
|
|
|
|
|