Learn R Programming

semTools (version 0.4-11)

probe3WayMC: Probing two-way interaction on the no-centered or mean-centered latent interaction

Description

Probing interaction for simple intercept and simple slope for the no-centered or mean-centered latent two-way interaction

Usage

probe3WayMC(fit, nameX, nameY, modVar, valProbe1, valProbe2)

Arguments

fit
The lavaan model object used to evaluate model fit
nameX
The vector of the factor names used as the predictors. The three first-order factors will be listed first. Then the second-order factors will be listeed. The last element of the name will represent the three-way interaction. Note that the fourth element m
nameY
The name of factor that is used as the dependent variable.
modVar
The name of two factors that are used as the moderators. The effect of the independent factor on each combination of the moderator variable values will be probed.
valProbe1
The values of the first moderator that will be used to probe the effect of the independent factor.
valProbe2
The values of the second moderator that will be used to probe the effect of the independent factor.

Value

  • A list with two elements:
    1. SimpleIntercept
    The intercepts given each value of the moderator. This element will be shown only if the factor intercept is estimated (e.g., not fixed as 0).
  • SimpleSlope
  • The slopes given each value of the moderator.

code

valProbe2

emph

  • z
  • p

Details

Before using this function, researchers need to make the products of the indicators between the first-order factors using mean centering (Marsh, Wen, & Hau, 2004). Note that the double-mean centering may not be appropriate for probing interaction if researchers are interested in simple intercepts. The mean or double-mean centering can be done by the indProd function. The indicator products can be made for all possible combination or matched-pair approach (Marsh et al., 2004). Next, the hypothesized model with the regression with latent interaction will be used to fit all original indicators and the product terms. See the example for how to fit the product term below. Once the lavaan result is obtained, this function will be used to probe the interaction. Let that the latent interaction model regressing the dependent variable ($Y$) on the independent varaible ($X$) and two moderators ($Z$ and $W$) be $$Y = b_0 + b_1X + b_2Z + b_3W + b_4XZ + b_5XW + b_6ZW + b_7XZW + r,$$ where $b_0$ is the estimated intercept or the expected value of $Y$ when $X$, $Z$, and $W$ are 0, $b_1$ is the effect of $X$ when $Z$ and $W$ are 0, $b_2$ is the effect of $Z$ when $X$ and $W$ is 0, $b_3$ is the effect of $W$ when $X$ and $Z$ are 0, $b_4$ is the interaction effect between $X$ and $Z$ when $W$ is 0, $b_5$ is the interaction effect between $X$ and $W$ when $Z$ is 0, $b_6$ is the interaction effect between $Z$ and $W$ when $X$ is 0, $b_7$ is the three-way interaction effect between $X$, $Z$, and $W$, and $r$ is the residual term. For probing three-way interaction, the simple intercept of the independent variable at the specific values of the moderators (Aiken & West, 1991) can be obtained by $$b_{0|X = 0, Z, W} = b_0 + b_2Z + b_3W + b_6ZW.$$ The simple slope of the independent varaible at the specific values of the moderators can be obtained by $$b_{X|Z, W} = b_1 + b_3Z + b_4W + b_7ZW.$$ The variance of the simple intercept formula is $$Var\left(b_{0|X = 0, Z, W}\right) = Var\left(b_0\right) + Z^2Var\left(b_2\right) + W^2Var\left(b_3\right) + Z^2W^2Var\left(b_6\right) + 2ZCov\left(b_0, b_2\right) + 2WCov\left(b_0, b_3\right) + 2ZWCov\left(b_0, b_6\right) + 2ZWCov\left(b_2, b_3\right) + 2Z^2WCov\left(b_2, b_6\right) + 2ZW^2Cov\left(b_3, b_6\right)$$ where $Var$ denotes the variance of a parameter estimate and $Cov$ denotes the covariance of two parameter estimates. The variance of the simple slope formula is $$Var\left(b_{X|Z, W}\right) = Var\left(b_1\right) + Z^2Var\left(b_4\right) + W^2Var\left(b_5\right) + Z^2W^2Var\left(b_7\right) + 2ZCov\left(b_1, b_4\right) + 2WCov\left(b_1, b_5\right) + 2ZWCov\left(b_1, b_7\right) + 2ZWCov\left(b_4, b_5\right) + 2Z^2WCov\left(b_4, b_7\right) + 2ZW^2Cov\left(b_5, b_7\right)$$ Wald statistic is used for test statistic.

References

Aiken, L. S., & West, S. G. (1991). Multiple regression: Testing and interpreting interactions. Newbury Park, CA: Sage. Marsh, H. W., Wen, Z., & Hau, K. T. (2004). Structural equation models of latent interactions: Evaluation of alternative estimation strategies and indicator construction. Psychological Methods, 9, 275-300.

See Also

  • indProdFor creating the indicator products with no centering, mean centering, double-mean centering, or residual centering.
  • probe2WayMCFor probing the two-way latent interaction when the results are obtained from mean-centering, or double-mean centering.
  • probe2WayRCFor probing the two-way latent interaction when the results are obtained from residual-centering approach.
  • probe3WayRCFor probing the two-way latent interaction when the results are obtained from residual-centering approach.
  • plotProbePlot the simple intercepts and slopes of the latent interaction.

Examples

Run this code
library(lavaan)

dat3wayMC <- indProd(dat3way, 1:3, 4:6, 7:9)

model3 <- "f1 =~ x1 + x2 + x3
f2 =~ x4 + x5 + x6
f3 =~ x7 + x8 + x9
f12 =~ x1.x4 + x2.x5 + x3.x6
f13 =~ x1.x7 + x2.x8 + x3.x9
f23 =~ x4.x7 + x5.x8 + x6.x9
f123 =~ x1.x4.x7 + x2.x5.x8 + x3.x6.x9
f4 =~ x10 + x11 + x12
f4 ~ f1 + f2 + f3 + f12 + f13 + f23 + f123
f1 ~~ 0*f12
f1 ~~ 0*f13
f1 ~~ 0*f123
f2 ~~ 0*f12
f2 ~~ 0*f23
f2 ~~ 0*f123
f3 ~~ 0*f13
f3 ~~ 0*f23
f3 ~~ 0*f123
f12 ~~ 0*f123
f13 ~~ 0*f123
f23 ~~ 0*f123
x1 ~ 0*1
x4 ~ 0*1
x7 ~ 0*1
x10 ~ 0*1
x1.x4 ~ 0*1
x1.x7 ~ 0*1
x4.x7 ~ 0*1
x1.x4.x7 ~ 0*1
f1 ~ NA*1
f2 ~ NA*1
f3 ~ NA*1
f12 ~ NA*1
f13 ~ NA*1
f23 ~ NA*1
f123 ~ NA*1
f4 ~ NA*1
" 

fitMC3way <- sem(model3, data=dat3wayMC, meanstructure=TRUE, std.lv=FALSE)
summary(fitMC3way)

result3wayMC <- probe3WayMC(fitMC3way, c("f1", "f2", "f3", "f12", "f13", "f23", "f123"), 
	"f4", c("f1", "f2"), c(-1, 0, 1), c(-1, 0, 1))
result3wayMC

Run the code above in your browser using DataLab