-
Hi all, @frankmj, I am now trying to transition my data from HDDM to HSSM. I've asked about the interpretation of group- and subject-level parameters for `a ~ 1 + (1|subject) in the model (#345). However, I have new problems on the interpretation of group- and subject-level parameters in regression: I put
There are v_Intercept, v_1|subject[i], v_beta1|subject[i], v_beta1|subject[i], v_beta1|subject[i] in the table. And I am wondering how I can get group and individual parameters of the intercept, beta1, beta2 and beta3. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi, |
Beta Was this translation helpful? Give feedback.
Hi,
There's a tutorial in the works that will address these questions but in the meantime I'll do my best to answer. When creating these models its generally a good idea to plot the graph of the model using graph() to see exactly what group/individual parameters you're asking the model to fit. If it's truly hierarchical, you can see this with graph() where there should be a mean and std (sigma) for the individual parameters.
In the equation you posted, it looks like you're only asking for a group effect of the intercept (represented by v_intercept). v_1|subject[1] represents the individual offset for subject[1] so the individual intercept for subject 1 in the example above would be v_Inte…