"a" difference between HDDM and HSSM #282
-
Hi all, I am trying to do some estimation in HSSM which I have done in the old HDDM package before. And the estimation result is almost the same in all parameters except "a". And a’s estimation in HSSM is about half of it in HDDM. Here is the code in HDDM:
And here is the code in HSSM:
I am wondering what makes the difference in "a". It’s because of the prior distribution or definition difference or something else? Please let me know what happens, and thanks for any help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @JoeSu112 ,
The difference is that HSSM will treat boundaries consistently (intended) as Sorry about the confusion we should make a note on this in the documentation. Best, |
Beta Was this translation helpful? Give feedback.
Hi @JoeSu112 ,
a_hssm
should bea_hddm / 2
(that is what you observe right?).The difference is that HSSM will treat boundaries consistently (intended) as
[-a, a]
whereas in HDDM boundaries were treated as[0, a]
for basic HDDM functionality and as[-a, a]
in the HDDMnn classes.Sorry about the confusion we should make a note on this in the documentation.
Let me know if any question remains.
Best,
Alex