Learn R Programming

bucky (version 1.0.7)

summary.mi.estimates: Summary for multiple imputation

Description

Output summary information for estimates computed on multiply imputed data sets.

Usage

# S3 method for mi.estimates
summary(object, …)

Arguments

object

An object of class mi.estimates, usually computed with mi.eval.

Any additional arguments to be passed to coeftest.

Value

An object of class summary.mi.estimates containing a coefficients object of class coeftest and other summary information.

Details

This function provides summary output for models estimated using multiple imputation using mi.eval.

See Also

See Also mi.eval and amelia.

Examples

Run this code
# NOT RUN {
if (require("Amelia")) {
    data(africa)
    a.out <- amelia(x = africa, cs = "country", ts = "year", logs = "gdp_pc")

    model <- mi.eval(lm(civlib ~ log(gdp_pc), data=a.out, subset=year==1973))

    summary(model)
}
# }

Run the code above in your browser using DataLab