Learn R Programming

fwildclusterboot (version 0.13.0)

summary.mboottest: S3 method to summarize objects of class mboottest

Description

S3 method to summarize objects of class mboottest

Usage

# S3 method for mboottest
summary(object, digits = 3, ...)

Value

Returns result summaries for objects of type mboottest

Arguments

object

object of type mboottest

digits

rounding of output. 3 by default

...

Further arguments passed to or from other methods.

Examples

Run this code
if (FALSE) {
requireNamespace("clubSandwich")
R <- clubSandwich::constrain_zero(2:3, coef(lm_fit))
wboottest <-
  mboottest(
    object = lm_fit,
    clustid = "group_id1",
    B = 999,
    R = R
  )
summary(wboottest)
print(wboottest)
nobs(wboottest)
pval(wboottest)
generics::tidy(wboottest)
}

Run the code above in your browser using DataLab