Replies: 2 comments 1 reply
-
Hi @Mcstevens , we are going to teach a few workshops in the coming weeks (one mid July / one end of July as a start), and pushing for expanded documentation and tutorials in that context. Really sorry about the delay, against initial intentions, we had to prioritize a whole bunch of other things first. There is definitely going to be a tutorial along the lines of your request. Just to mention it again though: In principle, all you really need for (what I understand are) your purposes, is access to the traces (bayesian t-test e.g.) and/or point-wise log-likelihoods (model comparison via You can access the Best, |
Beta Was this translation helpful? Give feedback.
-
Just as a quick addendum in advance of the fuller tuitorials:
* The plots I linked to before showed how to get HDI's from posteriors but
of course you can also access the HDI itself (which is often a
relevant statistic for significance, ie you are interested in whether the
HDI contains 0 or some other reference value). This is reported using
az.summary (where you can also get the posterior mean and std etc).
* If you want to just compute the proportion of samples different from a
reference value (like in the HDDM tutorials), you can do something like
np.mean(samples_model_angle.posterior.z_Intercept>0.5)
where samples.... are what you get from the inference object, and in this
case we are looking at whether the overall starting point z is biased above
0.5. Similarly you can do the same thing by subtracting two posteriors and
taking the mean of their difference > 0
…On Mon, Jun 24, 2024 at 9:52 PM Alexander Fengler ***@***.***> wrote:
Hi @Mcstevens <https://github.com/Mcstevens> ,
we are going to teach a few workshops in the coming weeks (one mid July /
one end of July as a start), and pushing for expanded documentation and
tutorials in that context.
Really sorry about the delay, against initial intentions, we had to
prioritize a whole bunch of other things first.
Best,
Alex
—
Reply to this email directly, view it on GitHub
<#473 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAG7TFAKGNFEZYH53W6OUKDZJDEOHAVCNFSM6AAAAABJ2UBB66VHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4TQNRWGA2TA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Hi everyone... Recently, folks asked about significance testing in a post:
#421
The answers were very helpful. But, they ultimately directed people to tutorial information to learn how to get specific factor's trace information out of the sampled model (e.g., to test for the difference between two conditions, etc.). For the life of me, I can't find examples of this in any of the tutorial pages I could find online, or as part of GitHub.
Could I ask someone to provide guidance here, perhaps with specific syntax and examples? If it helps, know that what I'm ultimately hoping to do is be able to redirect some text output from python to file so that I can script up many models and summarize their results. So I'm not just looking to see a posterior plot in image form... but rather, understand an example of how to extract P or other relevant significance testing information from HSSM that will be acceptable for publication.
Also, I've seen a lot of references to tutorial information in-the-works over the past year. I've actually be delaying work I originally did in HDDM because I think I'll have a stronger study using HSSM. But I don't seem to see the sort of step-by-step examples that accompanied the HDDM work. Is this still in development? Or maybe have I been looking in the wrong places?
Many thanks,
Mike
Beta Was this translation helpful? Give feedback.
All reactions