You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am having trouble understanding the behaviour of parameters() on lme objects under different specifications of the random effects (corresponding to method (i) and (iv) in the lme documentation of the random = argument).
When the random effect is specified using formula with pipe for grouping, parameters behaves as expected,
library("nlme")
library("parameters")
lme(weight ~ Treatment,
random = ~ 1 | Litter,
data = RatPupWeight) |>
parameters()
However, parameters fail on the same model specified with a list (the names indicating the grouping),
lme(weight ~ Treatment,
random = list(Litter = ~ 1),
data = RatPupWeight) |>
parameters()
The text was updated successfully, but these errors were encountered:
I am having trouble understanding the behaviour of
parameters()
on lme objects under different specifications of the random effects (corresponding to method (i) and (iv) in the lme documentation of therandom =
argument).When the random effect is specified using formula with pipe for grouping, parameters behaves as expected,
However, parameters fail on the same model specified with a list (the names indicating the grouping),
The text was updated successfully, but these errors were encountered: