extract
method for merMod
objectsextract
method for merMod
objects created by the
lme4 package.
# S4 method for merMod
extract(
model,
method = c("naive", "profile", "boot", "Wald"),
level = 0.95,
nsim = 1000,
include.aic = TRUE,
include.bic = TRUE,
include.dic = FALSE,
include.deviance = FALSE,
include.loglik = TRUE,
include.nobs = TRUE,
include.groups = TRUE,
include.variance = TRUE,
...
)
A statistical model object.
The method used to compute confidence intervals or p-values.
The default value "naive"
computes naive p-values while the other
methods compute confidence intervals using the confint
function. See
confint.merMod
.
Significance or confidence level (1 - alpha
) for
computing confidence intervals.
The MCMC sample size or number of bootstrapping replications on
the basis of which confidence intervals are computed (only if the
method
argument does not specify "naive"
, which is the
default behavior). Note: large values may take considerable computing time.
Report Akaike's Information Criterion (AIC) in the GOF block?
Report the Bayesian Information Criterion (BIC) in the GOF block?
Report the deviance information criterion (DIC)?
Report the deviance?
Report the log likelihood in the GOF block?
Report the number of observations in the GOF block?
Report the number of groups?
Report group variances?
Arguments to be passed to the fixef
function
in the lme4 package.