emmeans_support | R Documentation |
emmeans
This package includes methods that allow mmrm
objects to be used
with the emmeans
package. emmeans
computes estimated marginal means
(also called least-square means) for the coefficients of the MMRM.
We can also e.g. obtain differences between groups by applying
pairs()
on the object returned
by emmeans::emmeans()
.
fit <- mmrm(
formula = FEV1 ~ RACE + SEX + ARMCD * AVISIT + us(AVISIT | USUBJID),
data = fev_data
)
if (require(emmeans)) {
emmeans(fit, ~ ARMCD | AVISIT)
pairs(emmeans(fit, ~ ARMCD | AVISIT), reverse = TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.