Estimation latent interactions through Mplus
modsem_mplus.Rd
Estimation latent interactions through Mplus
Usage
modsem_mplus(
model.syntax,
data,
estimator = "ml",
type = "random",
algorithm = "integration",
process = 8,
integration = 15,
...
)
Arguments
- model.syntax
lavaan/modsem syntax
- data
dataset
- estimator
estimator argument passed to
Mplus
- type
type argument passed to
Mplus
- algorithm
algorithm argument passed to
Mplus
- process
process argument passed to
Mplus
- integration
integration argument passed to
Mplus
- ...
arguments passed to other functions
Examples
# Theory Of Planned Behavior
tpb <- '
# Outer Model (Based on Hagger et al., 2007)
ATT =~ att1 + att2 + att3 + att4 + att5
SN =~ sn1 + sn2
PBC =~ pbc1 + pbc2 + pbc3
INT =~ int1 + int2 + int3
BEH =~ b1 + b2
# Inner Model (Based on Steinmetz et al., 2011)
# Covariances
ATT ~~ SN + PBC
PBC ~~ SN
# Causal Relationsships
INT ~ ATT + SN + PBC
BEH ~ INT + PBC
BEH ~ INT:PBC
'
if (FALSE) { # \dontrun{
est_mplus <- modsem_mplus(tpb, data = TPB)
summary(est_mplus)
} # }