Skip to content

Commit 63c4678

Browse files
committed
[composites] correctly rescale model-implied covariance matrix
1 parent 3a06697 commit 63c4678

File tree

3 files changed

+19
-5
lines changed

3 files changed

+19
-5
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: lavaan
22
Title: Latent Variable Analysis
3-
Version: 0.6-20.2261
3+
Version: 0.6-20.2262
44
Authors@R: c(person(given = "Yves", family = "Rosseel",
55
role = c("aut", "cre"),
66
email = "[email protected]",

R/lav_representation_lisrel.R

+11-2
Original file line numberDiff line numberDiff line change
@@ -1105,10 +1105,19 @@ computeVYx.LISREL <- computeSigmaHat.LISREL <- function(MLIST = NULL,
11051105
function(x) sum(x == 0) == ncol(LAMBDA)))
11061106
clv.idx <- which(apply(LAMBDA, 2L,
11071107
function(x) sum(x == 0) == nrow(LAMBDA)))
1108+
# regular latent variables
1109+
rlv.idx <- seq_len(ncol(LAMBDA))[-clv.idx]
1110+
1111+
# combine LAMBDA and WMAT
1112+
LW <- LAMBDA + WMAT
1113+
11081114
Tmat <- diag(nrow(LAMBDA))
11091115
Tmat[cov.idx, cov.idx] <- THETA[cov.idx, cov.idx]
1116+
wtw <- t(LW[,clv.idx, drop = FALSE]) %*% Tmat %*% LW[,clv.idx, drop = FALSE]
1117+
wtw.inv <- solve(wtw)
1118+
WTW.inv <- diag(ncol(LAMBDA))
1119+
WTW.inv[clv.idx, clv.idx] <- wtw.inv
11101120

1111-
LambdaWmat <- LAMBDA + WMAT
11121121
if (is.null(BETA)) {
11131122
IB.inv <- diag(nrow(PSI))
11141123
} else {
@@ -1117,7 +1126,7 @@ computeVYx.LISREL <- computeSigmaHat.LISREL <- function(MLIST = NULL,
11171126
VETA <- IB.inv %*% PSI %*% t(IB.inv)
11181127
C0 <- VETA; diag(C0)[clv.idx] <- 0
11191128

1120-
VYx <- Tmat %*% LambdaWmat %*% C0 %*% t(LambdaWmat) %*% Tmat + THETA
1129+
VYx <- Tmat %*% LW %*% WTW.inv %*% C0 %*% t(WTW.inv) %*% t(LW) %*% Tmat + THETA
11211130
}
11221131

11231132
# if delta, scale

R/lav_start.R

+7-2
Original file line numberDiff line numberDiff line change
@@ -463,8 +463,8 @@ lav_start <- function(start.method = "default",
463463
lavpartable$op == "~~" &
464464
lavpartable$rhs %in% ov.ind.c &
465465
lavpartable$lhs != lavpartable$rhs)
466-
lhs.idx <- match(lavpartable$lhs[cov.idx], ov.ind.c)
467-
rhs.idx <- match(lavpartable$rhs[cov.idx], ov.ind.c)
466+
lhs.idx <- match(lavpartable$lhs[cov.idx], ov.names)
467+
rhs.idx <- match(lavpartable$rhs[cov.idx], ov.names)
468468
if (!is.null(lavsamplestats@missing.h1[[g]])) {
469469
start[cov.idx] <- lavsamplestats@missing.h1[[g]]$sigma[
470470
cbind(lhs.idx, rhs.idx)
@@ -984,14 +984,19 @@ lav_start <- function(start.method = "default",
984984
# StartingValues <- lav_start
985985

986986
# sanity check: (user-specified) variances smaller than covariances
987+
# but not for composites, as we have not 'set' their variances yet
987988
lav_start_check_cov <- function(lavpartable = NULL, start = lavpartable$start) {
988989
nblocks <- lav_partable_nblocks(lavpartable)
989990
block.values <- lav_partable_block_values(lavpartable)
990991

991992
for (g in 1:nblocks) {
993+
994+
lv.names.c <- lav_partable_vnames(lavpartable, "lv.composite", block = g)
995+
992996
# collect all non-zero covariances
993997
cov.idx <- which(lavpartable$op == "~~" &
994998
lavpartable$block == block.values[g] &
999+
!lavpartable$lhs %in% lv.names.c &
9951000
lavpartable$lhs != lavpartable$rhs &
9961001
!lavpartable$exo &
9971002
start != 0)

0 commit comments

Comments
 (0)