Last chance! 50% off unlimited learning
Sale ends in
emmGrid
objectsThese are useful utility functions for creating a compact version of an
emmGrid
object that may be saved and later reconstructed, or for
converting old ref.grid
or lsmobj
objects into emmGrid
objects.
# S3 method for emmGrid
as.list(x, model.info.slot = FALSE, ...)as.emm_list(object, ...)
as.emmGrid(object, ...)
as.list.emmGrid
returns an object of class list
.
as.emm_list
returns an object of class emm_list
.
as.emmGrid
returns an object of class emmGrid
.
However, in fact, both as.emmGrid
and as.emm_list
check for an
attribute in object
to decide whether to return an emmGrid
or emm_list)
object.
An emmGrid
object
Logical value: Include the model.info
slot?
Set this to TRUE
if you want to preserve the original call and
information needed by the submodel
option.
If FALSE
, only the nesting information (if any) is saved
In as.emmGrid
, additional arguments passed to
update.emmGrid
before returning the object. This
argument is ignored in as.list.emmGrid
Object to be converted to class emmGrid
. It may
be a list
returned by as.list.emmGrid
, or a ref.grid
or lsmobj
object created by emmeans's predecessor, the
lsmeans package. An error is thrown if object
cannot
be converted.
An emmGrid
object is an S4 object, and as such cannot be saved in a
text format or saved without a lot of overhead. By using as.list
,
the essential parts of the object are converted to a list format that can be
easily and compactly saved for use, say, in another session or by another user.
Providing this list as the arguments for emmobj
allows the user
to restore a working emmGrid
object.
emmobj
pigs.lm <- lm(log(conc) ~ source + factor(percent), data = pigs)
pigs.sav <- as.list(ref_grid(pigs.lm))
pigs.anew <- as.emmGrid(pigs.sav)
emmeans(pigs.anew, "source")
Run the code above in your browser using DataLab