Sorry if this is the wrong venue for Bambi questions but thought I might try here.
I tried to implement the following formula:
y ~ time * tx + (time | therapist/subjects)
which expands to:
y ~ time * tx + (time | therapist:subjects) + (time | therapist)
and I get the following error:
“ValueError: Factor on right hand side of group specific term must be a single term”
Is it possible to implement three-level conditional hierarchical models in Bambi or am I simply writing this incorrectly? If I am writing it incorrectly, how would I need to reformat it to work with Bambi/Formulae?