modelsummary (version 0.1.0)

tidy.mira: Tidy a multiple imputation `mice` pooled object

Description

Tidy a multiple imputation `mice` pooled object

Usage

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

Arguments

x

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

...

extra arguments (not used)

Value

a tibble with one row per term

See Also

Other tidiers: glance.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(Temp~ Ozone+Solar.R+Wind))
tidy(mod)

# }

Run the code above in your browser using DataCamp Workspace