Learn R Programming

fwildclusterboot (version 0.13.0)

glance.mboottest: S3 method to glance at objects of class boottest

Description

S3 method to glance at objects of class boottest

Usage

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

Value

A single row summary "glance" of an object of type boottest - lists characteristics of the input regression model

Arguments

x

object of type mboottest

...

Further arguments passed to or from other methods.

Examples

Run this code
if (FALSE) {
requireNamespace("fwildclusterboot")
data(voters)
lm_fit <- lm(
proposition_vote ~ treatment + ideology1 + log_income + Q1_immigration,
  data = voters
)
mboot <- mboottest(
    object = lm_fit,
    clustid = "group_id1",
    B = 999,
    R = R
)
generics::glance(mboot)
}

Run the code above in your browser using DataLab