
Last chance! 50% off unlimited learning
Sale ends in
lavaan
using the FIML estimator, then pass that lavaan
object to bsBootMis
.The second is designed for users of other software packages (e.g., LISREL, EQS, Amos, or Mplus). Users can import their data, chi-squared value, and model-implied moments from another package, and they have the option of saving (or writing to a file) either the transformed data or bootstrapped samples of that data, which can be analyzed in other programs. In order to analyze the bootstrapped samples and return a p value, users of other programs must still specify their model using lavaan syntax.
bsBootMiss(x, transformation = 2, nBoot = 500, model, rawData,
Sigma, Mu, group, ChiSquared, EMcov,
writeTransData = FALSE, transDataOnly = FALSE,
writeBootData = FALSE, bootSamplesOnly = FALSE,
writeArgs, seed = NULL, suppressWarn = TRUE,
showProgress = TRUE, ...)
lavaan
object used in the Bollen-Stine bootstrap
x
is not provided.
x
is not provided.
x
is not provided.
x
is not provided.
rawData
if x
is not provided.
x
is not provided.
x
is not provided. The EM (or Two-Stage ML) estimated covariance matrix used to speed up Transformation 2 algorithm.
TRUE
, the result will provide the transformed data only.
TRUE
, the transformed data set is written to a text file, transDataOnly
is set to TRUE
, and the transformed data is returned invisibly.
TRUE
, the result will provide bootstrap data sets only.
TRUE
, the stacked bootstrap data sets are written to a text file, bootSamplesOnly
is set to TRUE
, and the list of bootstrap data sets are returned invisibly.
list
. If writeBootData = TRUE
or writeBootData = TRUE
, user can pass arguments to the write.table
function as a list. Some default values are provided: file
= "bootstrappedSamples.dat", row.names
= FALSE
, and na
= "-999", but the user can override all of these by providing other values for those arguments in the writeArgs
list.
TRUE
, warnings from lavaan
function will be suppressed when fitting the model to each bootstrap sample.
lavaan
function.
BootMiss
object containing the results of the bootstrap samples. Use show
, summary
, or hist
to examine the results. Optionally, the transformed data set is returned if transDataOnly = TRUE
. Optionally, the bootstrap data sets are returned if bootSamplesOnly = TRUE
.
Bollen, K. A., \& Stine, R. A. (1992). Bootstrapping goodness-of-fit measures in structural equation models. Sociological Methods \& Research, 21, 205-229. doi:10.1177/0049124192021002004
Savalei, V., \& Yuan, K.-H. (2009). On the model-based bootstrap with missing data: Obtaining a p-value for a test of exact fit. Multivariate Behavioral Research, 44, 741-763. doi:10.1080/00273170903333590
BootMiss
## Not run:
# dat1 <- HolzingerSwineford1939
# dat1$x5 <- ifelse(dat1$x1 <= quantile(dat1$x1, .3), NA, dat1$x5)
# dat1$x9 <- ifelse(is.na(dat1$x5), NA, dat1$x9)
#
# targetModel <- "
# visual =~ x1 + x2 + x3
# textual =~ x4 + x5 + x6
# speed =~ x7 + x8 + x9
# "
# targetFit <- sem(targetModel, dat1, meanstructure = TRUE, std.lv = TRUE,
# missing = "fiml", group = "school")
# summary(targetFit, fit = TRUE, standardized = TRUE)
#
# # The number of bootstrap samples should be much higher.
# temp <- bsBootMiss(targetFit, transformation = 1, nBoot = 10, seed = 31415)
#
# temp
# summary(temp)
# hist(temp)
# hist(temp, printLegend = FALSE) # suppress the legend
# ## user can specify alpha level (default: alpha = 0.05), and the number of
# ## digits to display (default: nd = 2). Pass other arguments to hist(...),
# ## or a list of arguments to legend() via "legendArgs"
# hist(temp, alpha = .01, nd = 3, xlab = "something else", breaks = 25,
# legendArgs = list("bottomleft", box.lty = 2))
# ## End(Not run)
Run the code above in your browser using DataLab