Skip to content

Commit 6ecb690

Browse files
committed
[SAM] gamma.unbiased = TRUE per default (for se = "local")
1 parent 424fb2c commit 6ecb690

File tree

6 files changed

+89
-1113
lines changed

6 files changed

+89
-1113
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
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.2323
3+
Version: 0.6-20.2324
44
Authors@R: c(person(given = "Yves", family = "Rosseel",
55
role = c("aut", "cre"),
66
email = "Yves.Rosseel@UGent.be",

R/lav_model_information.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ lav_model_information <- function(lavmodel = NULL,
2323
# estmator <- lavoptions$estimator
2424
# }
2525
information <- lavoptions$information[1] # ALWAYS used the first one
26-
# called can control it
26+
# caller can control it
2727

2828
# rotation?
2929
# if(!is.null(lavoptions$rotation) && lavoptions$rotation != "none") {

R/lav_sam_step0.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ lav_sam_step0 <- function(cmd = "sem", model = NULL, data = NULL,
2727
# dotdotdot0$cat.wls.w <- FALSE # no weight matrix if categorical
2828
# note: this breaks the computation of twostep standard errors...
2929
if (se %in% c("local", "ij", "twostep.robust")) {
30+
dotdotdot0$sample.icov <- TRUE
3031
dotdotdot0$NACOV <- TRUE
32+
dotdotdot0$gamma.unbiased <- TRUE
3133
dotdotdot0$fixed.x <- FALSE
3234
dotdotdot0$ov.order <- "force.model" # avoid data ordering...
3335
}

0 commit comments

Comments
 (0)