confint.rbindWald_lmm | R Documentation |
Combine pointwise or simultaneous confidence intervals relative to linear contrasts of parameters from different linear mixed models. Can also output p-values (corresponding to pointwise confidence intervals) or adjusted p-values (corresponding to simultaneous confidence intervals).
## S3 method for class 'rbindWald_lmm'
confint(
object,
parm,
level = 0.95,
df = NULL,
method = NULL,
columns = NULL,
ordering = NULL,
backtransform = NULL,
...
)
object |
a |
parm |
Not used. For compatibility with the generic method. |
level |
[numeric, 0-1] nominal coverage of the confidence intervals. |
df |
[logical] Should a Student's t-distribution be used to model the distribution of the Wald statistic. Otherwise a normal distribution is used. |
method |
[character] Should pointwise confidence intervals be output ( |
columns |
[character vector] Columns to be output.
Can be any of |
ordering |
[character] should the output be ordered by name of the linear contrast ( |
backtransform |
[logical] should the estimates be back-transformed? |
... |
Not used. For compatibility with the generic method. |
Argument method: the following pooling are available:
"average"
: average estimates
"pool.se"
: weighted average of the estimates, with weights being the inverse of the squared standard error.
"pool.gls"
: weighted average of the estimates, with weights being based on the variance-covariance matrix of the estimates. When this matrix is singular, the Moore–Penrose inverse is used which correspond to truncate the spectral decomposition for eigenvalues below 10^{-12}
.
"pool.gls1"
: similar to "pool.gls"
with weights shrinked toward the average whenever they exceed 1 in absolute value.
"pool.rubin"
: average of the estimates and compute the uncertainty according to Rubin's rule (Barnard et al. 1999). Validity requires the congeniality condition of Meng (1994).
"p.rejection"
: proportion of null hypotheses where there is evidence for an effect. By default the critical quantile (defining the level of evidence required) is evaluated using a "single-step"
method but this can be changed by adding adjustment method in the argument method
, e.g. effects=c("bonferronin","p.rejection")
.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.