-
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
Drop sample size from Dataset.coordinates #231
Comments
Please forgive me if we've discussed this before, but have we considered (at least in the architecture if not the current implementation) the possibility of voxel-wise-varying sample size? It's now an edge case, but with larger and larger N (for an individual, non-meta analysis), you have the problem of ever eroding analysis mask since all voxels are required. We are now building tools that allow the number of subjects contributing to an analysis vary by voxel (within limits, of course). |
@nicholst Apologies for closing the issue with #232. I don't know if we've discussed it, but I don't remember talking about it. Is this something that would apply to CBMA methods, or just IBMA ones? For CBMAs, I'm guessing that the adjustment would be more of a guess, while for IBMAs, that information could actually be accessible. I should note that, while sample size is not stored in the Dataset's coordinates dataframe (it's in the metadata one instead), at the point where the CBMA estimator operates on the data, sample size (and any other relevant metadata) will be in the dataframe. So any adjustment done internally within the estimator will still have access to that info. |
Oh, sorry! This is only for IBMA. |
Gotcha. I think it would be good to open an enhancement issue for this once it's ready then. |
Currently, we store sample sizes in both the
Dataset.metadata
and theDataset.coordinates
attributes. We should drop then
column inDataset.coordinates
and make sure that CBMA algorithms grab that info from the metadata instead.NOTE: Originally part of #179, but that PR sprawled and will probably be closed.
The text was updated successfully, but these errors were encountered: