vcov.mlmm | R Documentation |
Extract the variance-covariance matrix of the model coefficients from multiple linear mixed models.
## S3 method for class 'mlmm'
vcov(
object,
effects = "contrast",
p = NULL,
newdata = NULL,
ordering = "by",
robust = object$args$robust,
type.information = object$object$type.information,
transform.sigma = NULL,
transform.k = NULL,
transform.rho = NULL,
transform.names = TRUE,
simplify = TRUE,
...
)
object |
a |
effects |
[character] By default will output the estimates relative to the hypotheses being tested ( |
p |
[list of numeric vector] list of model coefficients to be used. Only relevant if differs from the fitted values. |
newdata |
[NULL] Not used. For compatibility with the generic method. |
ordering |
[character] should the output be ordered by type of parameter ( |
robust |
[logical] Should robust standard errors (aka sandwich estimator) be output instead of the model-based standard errors.
Can also be |
type.information |
[character] Should the expected information be used (i.e. minus the expected second derivative) or the observed inforamtion (i.e. minus the second derivative). |
transform.sigma |
[character] Transformation used on the variance coefficient for the reference level. One of |
transform.k |
[character] Transformation used on the variance coefficients relative to the other levels. One of |
transform.rho |
[character] Transformation used on the correlation coefficients. One of |
transform.names |
[logical] Should the name of the coefficients be updated to reflect the transformation that has been used? |
simplify |
[logical] Should the column names contain the level of the by variable?
Not relevant when |
... |
Not used. For compatibility with the generic method. |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.