This function "pools" (i.e. combines) multiple estimate_contrasts objects,
returned by estimate_contrasts(), in a similar fashion as mice::pool().
Arguments
- x
A list of
estimate_contrastsobjects, as returned byestimate_contrasts().- ...
Currently not used.
References
Rubin, D.B. (1987). Multiple Imputation for Nonresponse in Surveys. New York: John Wiley and Sons.
Examples
data("nhanes2", package = "mice")
imp <- mice::mice(nhanes2, printFlag = FALSE)
comparisons <- lapply(1:5, function(i) {
m <- lm(bmi ~ age + hyp + chl, data = mice::complete(imp, action = i))
estimate_contrasts(m, "age")
})
pool_contrasts(comparisons)
#> Marginal Contrasts Analysis
#>
#> Level1 | Level2 | Difference | SE | 95% CI | t(1) | p
#> ---------------------------------------------------------------------
#> 40-59 | 20-39 | -4.59 | 2.07 | [-30.84, 21.65] | -2.22 | 0.269
#> 60-99 | 20-39 | -6.34 | 2.15 | [-33.72, 21.03] | -2.94 | 0.208
#> 60-99 | 40-59 | -1.75 | 2.28 | [-30.76, 27.26] | -0.77 | 0.584
#>
#> Variable predicted: bmi
#> Predictors contrasted: age
#> Predictors averaged: hyp, chl (1.9e+02)
#> p-values are uncorrected.
