--
You received this message because you are subscribed to the Google Groups "hddm-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to hddm-users+...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
In [4]: traces_z_inv = model_group.get_traces()['z_Intercept_trans']
In [5]: np.mean(traces_z_inv)
Out[5]: -3.649643423613024
In [6]: traces_z = mc.invlogit(traces_z_inv)
In [7]: np.mean(traces_z)
Out[7]: 0.02795953473947551
In [8]: 1 / (1+np.exp(-np.mean(traces_z)))
Out[8]: 0.50698942836706296
This seems reasonable to me, no?