S3 method to obtain the effective number of observation used
in mboottest()
Source: R/methods.R
nobs.mboottest.Rd
S3 method to obtain the effective number of observation used
in mboottest()
Usage
# S3 method for mboottest
nobs(object, ...)
Value
A scalar containing the effective number of observations
used in mboottest()
Examples
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
)
nobs(wboottest)
}