modelsummary (version 0.1.0)

glance.mira: Glance a multiple imputation `mice` pooled object

Description

Glance a multiple imputation `mice` pooled object

Usage

# S3 method for mira
glance(x, ...)

Arguments

x

An object returned by one of the `mice::pool` function.

...

extra arguments (not used)

Value

a tibble with one row

See Also

Other tidiers: tidy.mira

Examples

Run this code
# NOT RUN {
library(mice)
data <- airquality
data[4:10,3] <- rep(NA,7)
data[1:5,4] <- NA
tmp <- mice(data,m=5, seed=500, printFlag = FALSE)
mod <- with(tmp, lm(Ozone ~ Solar.R + Wind))
glance(mod)

# }

Run the code above in your browser using DataLab