-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathgetfit.Rd
48 lines (46 loc) · 1.47 KB
/
getfit.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
48
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/getfit.R
\name{getfit}
\alias{getfit}
\title{Extract list of fitted models}
\usage{
getfit(x, i = -1L, simplify = FALSE)
}
\arguments{
\item{x}{An object of class \code{mira}, typically produced by a call
to \code{with()}.}
\item{i}{An integer between 1 and \code{x$m} signalling the index of the
repeated analysis. The default \code{i= -1} return a list with all analyses.}
\item{simplify}{Should the return value be unlisted?}
}
\value{
If \code{i = -1} an object of class \code{mira} containing
all analyses. If \code{i} selects one of the analyses, then it return
an object whose with class inherited from that element.
}
\description{
Function \code{getfit()} returns the list of objects containing the repeated analysis
results, or optionally, one of these fitted objects. The function looks for
a list element called \code{analyses}, and return this component as a list with
\code{mira} class. If element \code{analyses} is not found in \code{x}, then
it returns \code{x} as a \code{mira} object.
}
\details{
No checking is done for validity of objects. The function also processes
objects of class \code{mitml.result} from the \code{mitml} package.
}
\examples{
imp <- mice(nhanes, print = FALSE, seed = 21443)
fit <- with(imp, lm(bmi ~ chl + hyp))
f1 <- getfit(fit)
class(f1)
f2 <- getfit(fit, 2)
class(f2)
}
\seealso{
\code{\link{mira}}, \code{\link{with.mids}}
}
\author{
Stef van Buuren, 2012, 2020
}
\keyword{manip}