File: bsBootMiss.Rd

package info (click to toggle)
r-cran-semtools 0.5.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,204 kB
  • sloc: makefile: 2
file content (149 lines) | stat: -rw-r--r-- 6,295 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/missingBootstrap.R
\name{bsBootMiss}
\alias{bsBootMiss}
\title{Bollen-Stine Bootstrap with the Existence of Missing Data}
\usage{
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, ...)
}
\arguments{
\item{x}{A target \code{lavaan} object used in the Bollen-Stine bootstrap}

\item{transformation}{The transformation methods in Savalei and Yuan (2009).
There are three methods in the article, but only the first two are currently
implemented here.  Use \code{transformation = 1} when there are few missing
data patterns, each of which has a large size, such as in a
planned-missing-data design.  Use \code{transformation = 2} when there are
more missing data patterns. The currently unavailable
\code{transformation = 3} would be used when several missing data patterns
have n = 1.}

\item{nBoot}{The number of bootstrap samples.}

\item{model}{Optional. The target model if \code{x} is not provided.}

\item{rawData}{Optional. The target raw data set if \code{x} is not
provided.}

\item{Sigma}{Optional. The model-implied covariance matrix if \code{x} is
not provided.}

\item{Mu}{Optional. The model-implied mean vector if \code{x} is not
provided.}

\item{group}{Optional character string specifying the name of the grouping
variable in \code{rawData} if \code{x} is not provided.}

\item{ChiSquared}{Optional. The model's \eqn{\chi^2} test statistic if
\code{x} is not provided.}

\item{EMcov}{Optional, if \code{x} is not provided. The EM (or Two-Stage ML)
estimated covariance matrix used to speed up Transformation 2 algorithm.}

\item{writeTransData}{Logical. If \code{TRUE}, the transformed data set is
written to a text file, \code{transDataOnly} is set to \code{TRUE}, and the
transformed data is returned invisibly.}

\item{transDataOnly}{Logical. If \code{TRUE}, the result will provide the
transformed data only.}

\item{writeBootData}{Logical. If \code{TRUE}, the stacked bootstrap data
sets are written to a text file, \code{bootSamplesOnly} is set to
\code{TRUE}, and the list of bootstrap data sets are returned invisibly.}

\item{bootSamplesOnly}{Logical. If \code{TRUE}, the result will provide
bootstrap data sets only.}

\item{writeArgs}{Optional \code{list}. If \code{writeBootData = TRUE} or
\code{writeBootData = TRUE}, user can pass arguments to the
\code{\link[utils:write.table]{utils::write.table()}} function as a list.  Some default values
are provided: \code{file} = "bootstrappedSamples.dat", \code{row.names} =
\code{FALSE}, and \code{na} = "-999", but the user can override all of these
by providing other values for those arguments in the \code{writeArgs} list.}

\item{seed}{The seed number used in randomly drawing bootstrap samples.}

\item{suppressWarn}{Logical. If \code{TRUE}, warnings from \code{lavaan}
function will be suppressed when fitting the model to each bootstrap sample.}

\item{showProgress}{Logical. Indicating whether to display a progress bar
while fitting models to bootstrap samples.}

\item{\dots}{The additional arguments in the \code{\link[lavaan:lavaan]{lavaan::lavaan()}}
function. See also \code{\link[lavaan:lavOptions]{lavaan::lavOptions()}}}
}
\value{
As a default, this function returns a \linkS4class{BootMiss}
object containing the results of the bootstrap samples. Use \code{show},
\code{summary}, or \code{hist} to examine the results. Optionally, the
transformed data set is returned if \code{transDataOnly = TRUE}. Optionally,
the bootstrap data sets are returned if \code{bootSamplesOnly = TRUE}.
}
\description{
Implement the Bollen and Stine's (1992) Bootstrap when missing observations
exist. The implemented method is proposed by Savalei and Yuan (2009). This
can be used in two ways. The first and easiest option is to fit the model to
incomplete data in \code{lavaan} using the FIML estimator, then pass that
\code{lavaan} object to \code{bsBootMiss}.
}
\details{
The second is designed for users of other software packages (e.g., LISREL,
EQS, Amos, or Mplus). Users can import their data, \eqn{\chi^2} 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 \emph{p} value, users of other
programs must still specify their model using lavaan syntax.
}
\examples{

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)

\donttest{
## The number of bootstrap samples should be much higher than this example
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))
}

}
\references{
Bollen, K. A., & Stine, R. A. (1992). Bootstrapping goodness-of-fit measures
in structural equation models. \emph{Sociological Methods &
Research, 21}(2), 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. \emph{Multivariate
Behavioral Research, 44}(6), 741--763. \doi{10.1080/00273170903333590}
}
\seealso{
\linkS4class{BootMiss}
}
\author{
Terrence D. Jorgensen (University of Amsterdam;
\email{TJorgensen314@gmail.com})

Syntax for transformations borrowed from http://www2.psych.ubc.ca/~vsavalei/
}