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
Amazing suite of packages! I was hoping to pivot my entire mixed modeling workflow to easystats but came across an issue in how model_parameters extracts parameter labels (I believe from broom.mixed) which prevents plotting of group-specific random effects. I am expecting output similar to sjPlot and use this as comparison.
Model
library(lme4)
s_mod <- lmer(Reaction ~ Days + (Days|Subject), data = sleepstudy)
Source
The problem I believe is broom.mixed::tidy returns term and level as different columns. model_parameters as a result has a single value for the grouping variable in the Parameter column as opposed to the group-specific identifiers which show up in Level.
The text was updated successfully, but these errors were encountered:
Amazing suite of packages! I was hoping to pivot my entire mixed modeling workflow to easystats but came across an issue in how
model_parameters
extracts parameter labels (I believe frombroom.mixed
) which prevents plotting of group-specific random effects. I am expecting output similar tosjPlot
and use this as comparison.Model
Expectation
Model Parameter + See Result
Source
The problem I believe is
broom.mixed::tidy
returns term and level as different columns.model_parameters
as a result has a single value for the grouping variable in theParameter
column as opposed to the group-specific identifiers which show up inLevel
.The text was updated successfully, but these errors were encountered: