With the mice
package, how do we check for the residuals sum of squared of the pooled analysis?
library(mice)
imp <- mice(nhanes, seed = 24500)
fit <- with(imp, lm(chl ~ age + bmi))
pool(fit)
summary(pool(fit))
fit
contains the analysis for each input dataset and pool(fit)
the pooled results. Is there a command to check the residuals sum of squared for a standard lm
object, something like residuals(pool(fit))
?