I was wondering what to do when robust values (for CFI, RMSEA) are not available for one of the models (they are for the initial, configural and metric invariance, but NOT for the scalar invariance model). Is it better to report the scaled values then for all the models?
These are my models:
INITIAL MODEL
cfa (specified_model, data = dataset,
std.lv = TRUE, meanstructure = T, estimator = "WLSMV", missing = "pairwise", ordered = TRUE)
CONFIGURAL INVARIANCE:
cfa (specified_model, data = dataset,
std.lv = TRUE, meanstructure = T, estimator = "WLSMV", missing = "pairwise", ordered = TRUE,
group = "group")
METRIC INVARIANCE
cfa (specified_model, data = dataset,
std.lv = TRUE, meanstructure = T, estimator = "WLSMV", missing = "pairwise", ordered = TRUE,
group = "group",
group.equal = "loadings")
SCALAR INVARIANCE
cfa (specified_model, data = dataset,
std.lv = TRUE, meanstructure = T, estimator = "WLSMV", missing = "pairwise", ordered = TRUE,
group = "group",
group.equal = c("loadings", "intercepts"))
A.