-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathibind.Rd
47 lines (44 loc) · 1.1 KB
/
ibind.Rd
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/ibind.R
\name{ibind}
\alias{ibind}
\title{Enlarge number of imputations by combining \code{mids} objects}
\usage{
ibind(x, y)
}
\arguments{
\item{x}{A \code{mids} object.}
\item{y}{A \code{mids} object.}
}
\value{
An S3 object of class \code{mids}
}
\description{
This function combines two \code{mids} objects \code{x} and \code{y} into a
single \code{mids} object, with the objective of increasing the number of
imputed data sets. If the number of imputations in \code{x} and \code{y} are
\code{m(x)} and \code{m(y)}, then the combined object will have
\code{m(x)+m(y)} imputations.
}
\details{
The two \code{mids} objects are required to
have the same underlying multiple imputation model and should
be fitted on the same data.
}
\examples{
data(nhanes)
imp1 <- mice(nhanes, m = 1, maxit = 2, print = FALSE)
imp1$m
imp2 <- mice(nhanes, m = 3, maxit = 3, print = FALSE)
imp2$m
imp12 <- ibind(imp1, imp2)
imp12$m
plot(imp12)
}
\seealso{
\code{\link[=mids-class]{mids}}
}
\author{
Karin Groothuis-Oudshoorn, Stef van Buuren
}
\keyword{manip}