getfit
returns the list of objects containing the repeated analysis
results, or optionally, one of these fit objects.
getfit(x, i = -1L, simplify = FALSE)
An object of class mira
or mitml.result
,
typically produced by a call to with()
.
An integer between 1 and x$m
signaling the number of the
repeated analysis. The default i= -1
return a list with all analyses.
Should the return value be unlisted?
If i = -1
an object of class mitml.result
containing
all analyses, otherwise it returns the fitted object of
the i'th repeated analysis.
# NOT RUN {
imp <- mice(nhanes)
fit <- with(imp, lm(bmi~chl+hyp))
getfit(fit)
getfit(fit, 2)
# }
Run the code above in your browser using DataLab