validAlldiffs | R Documentation |
Checks that an object
is an alldiffs.object
of S3-class
alldiffs
containing the components asreml.obj
,
wald.tab
and test.summary
.
validAlldiffs(object)
object |
an |
TRUE
or a character
describing why the object
is not a valid alldiffs.object
.
Chris Brien
alldiffs.object
, is.alldiffs
, as.alldiffs
,
validPredictionsFrame
, validAsrtests
data(Oats.dat)
## Use lmerTest and emmmeans to get predictions and associated statistics
if (requireNamespace("lmerTest", quietly = TRUE) &
requireNamespace("emmeans", quietly = TRUE))
{
m1.lmer <- lmerTest::lmer(Yield ~ Nitrogen*Variety + (1|Blocks/Wplots),
data=Oats.dat)
Var.emm <- emmeans::emmeans(m1.lmer, specs = ~ Nitrogen:Variety)
Var.preds <- summary(Var.emm)
den.df <- min(Var.preds$df)
## Modify Var.preds to be compatible with a predictions.frame
Var.preds <- as.predictions.frame(Var.preds, predictions = "emmean",
se = "SE", interval.type = "CI",
interval.names = c("lower.CL", "upper.CL"))
Var.vcov <- vcov(Var.emm)
Var.sed <- NULL
## Form an all.diffs object
Var.diffs <- as.alldiffs(predictions = Var.preds, classify = "Nitrogen:Variety",
sed = Var.sed, vcov = Var.vcov, tdf = den.df)
## check the validity of Var.diffs
validAlldiffs(Var.diffs)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.