str.emmGrid | R Documentation |
emmGrid
objectsMiscellaneous methods for emmGrid
objects
## S3 method for class 'emmGrid'
str(object, ...)
## S3 method for class 'emmGrid'
print(x, ..., export = FALSE)
## S3 method for class 'emmGrid'
vcov(object, ..., sep = get_emm_option("sep"))
object |
An |
... |
(required but not used) |
x |
An |
export |
Logical value. If |
sep |
separator for pasting levels in creating row and column
names for |
The vcov
method returns a symmetric matrix of variances and
covariances for predict.emmGrid(object, type = "lp")
warp.lm <- lm(breaks ~ wool * tension, data = warpbreaks)
warp.emm <- emmeans(warp.lm, ~ tension | wool)
vcov(warp.emm) |> zapsmall()
vcov(pairs(warp.emm), sep = "|") |> zapsmall()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.