-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Raise warning if coordinates dataset contains both positive and negative z_stats #465
Comments
It's definitely less common than using unidirectional coordinations, but there is a use case for it—e.g., if you have a bunch of contrasts where there's no clear directional hypothesis, but you think a consistent set of regions should be implicated in some way. Since density-based analyses don't care about sign, you will still get sane results, provided you adjust your interpretation appropriately. Neurosynth, for instance, works exclusively like this (though that's more by necessity than design). So, with that in mind, I don't think we want to raise an error. But a warning does seem appropriate. |
Thanks, great point, the interpretation is the crucial step here, not the analysis itself. |
I would default to splitting the contrasts within the Dataset during the img-to-coordinate conversion, with a warning. If you wanted to be really fancy, you could also invert the images and save them out as well. So study X's contrast of "A>B" would have positive z-statistic coordinates, and then the conversion would create a new contrast, "B>A" with negative z-statistic coordinates and possibly the inverted images. EDIT: Of course, things might change if we ever get an algorithm that works with effect sizes and bidirectional hypotheses, like SDM, working! Ultimately, though, it seems like a NIMADS/Dataset-searching problem to me. We don't really take into account sign/contrast definition, even with images, in our current approach... |
Just to make sure I understand the current state of this- we do want to raise a warning, right? |
I think a warning is appropriate. |
Summary
Seems weird to perform a meta-analysis with peaks being reported at both the positive and negative thresholds
Additional details
What were you trying to do?
Thinking about how users may use the output of #446
What did you expect to happen?
Raise warning/error when both positive/negative values are detected in z_stat column?
What actually happened?
The dataset will run on any estimator
Reproducing the bug
The text was updated successfully, but these errors were encountered: