S3 method to glance at objects of class boottest
Usage
# S3 method for boottest
glance(x, ...)
Value
A single row summary "glance" of an object of type boottest - lists characteristics of the input regression model
Examples
if (FALSE) {
requireNamespace("fwildclusterboot")
data(voters)
lm_fit <- lm(
proposition_vote ~ treatment + ideology1 + log_income + Q1_immigration,
data = voters
)
boot <- boottest(lm_fit,
B = 9999,
param = "treatment",
clustid = "group_id1"
)
generics::glance(boot)
}