Open PhoenixB opened 5 years ago
Definitely need more information, please. There are several known issues with "complex" models in brms (multivariate responses: #39, monotonic effects: #45), but I don't know what's in your model. A reproducible example would be great. At the very least, to continue the conversation, can you post your brms()
call?
Thank you very much!
The call is brm(bf(answer ~ 1 + face * disfigurement * situation + (1 | participant_id)), cumulative("logit", threshold = "flexible"), list(max_treedepth = 15, adapt_delta = 0.9))
, where answer
is a ordinal response variable with values from 0 to 10, face
, disfigurement
and situation
are factors with 4, 5, and 2 levels, respectively and participant_id
is a character variable with 4009 levels.
With the broom
package, it worked as expected, but the brms_tidiers seem to become deprecated soon, so I moved to broom.mixed
.
OK. I'm guessing that cumulative link models are not working yet (in essence, they're a form of multivariate-response model). Many of the changes here from the original broom
versions are trying to get parameters renamed in a more sensible way. A short-term solution might be to have a flag to turn off the cleverness and return whatever the original broom
version was giving ...
Dear Ben,
I fitted a complex model with
brms
and tried to tidy it withbroom.mixed
, but it keeps failing withError in x[[2]] : subscript out of bounds
. Do you have any idea what is going on? Do you need more information?Kindest regards, Pascal