Nothing
devtools::load_all()
m1 <- '
X =~ x1 + x2 + x3
Y =~ y1 + y2 + y3
Z =~ z1 + z2 + z3
Y ~ X + Z + X:X
'
methods <- c("rca", "ca", "dblcent", "lms", "qml")
ests <- vector("list", length(methods))
names(ests) <- methods
for (method in methods) {
if (method == "lms") {
ests[[method]] <- modsem(m1, data = oneInt, method = method,
convergence.abs = 1e-3)
} else {
ests[[method]] <- modsem(m1, data = oneInt, method = method)
}
}
nlsemModel <- '
ENJ =~ enjoy1 + enjoy2 + enjoy3 + enjoy4 + enjoy5
CAREER =~ career1 + career2 + career3 + career4
SC =~ academic1 + academic2 + academic3 + academic4 + academic5 + academic6
CAREER ~ ENJ + SC + ENJ:ENJ + SC:SC + ENJ:SC
'
est_qml2 <- modsem(nlsemModel, data = jordan, method = "qml",
mean.observed = FALSE, OFIM.hessian = FALSE)
est_rca2 <- modsem(nlsemModel, data = jordan, method = "rca")
est_dblcent2 <- modsem(nlsemModel, data = jordan, method = "dblcent")
std <- standardized_estimates(est_qml2)
print(std)
x <- "ENJ:ENJ"
y <- "ENJ:SC"
covENJENJ_ENJSC <- std[std$lhs %in% c(x, y) &
std$rhs %in% c(x, y) &
std$rhs != std$lhs &
std$op == "~~", "est"]
testthat::expect_true(covENJENJ_ENJSC > 0.3) # check that covariances between product terms
# are handled correctly
testthat::expect_equal(unname(calcVarParTable("CAREER", std)), 1)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.