Name |
Type |
Description |
Notes |
type |
str |
the type of meta-analysis being run, typically either cbma or ibma, but others may become available in the future. |
[optional] |
estimator |
Estimator |
|
[optional] |
mask |
str |
a string representing a binary nifti file to select which voxels a user wants to include in the analysis. |
[optional] |
conditions |
SpecificationConditions |
|
[optional] |
weights |
List[float] |
|
[optional] |
transformer |
str |
A transformation applied to column(s) (e.g., binarize based on a threshold). This is likely to become deprecated. |
[optional] |
corrector |
Corrector |
|
[optional] |
filter |
str |
a column from annotations selecting which analyses to include in the meta-analysis |
[optional] |
database_studyset |
str |
|
[optional] |
from neurosynth_compose_sdk.models.specification_post_body import SpecificationPostBody
# TODO update the JSON string below
json = "{}"
# create an instance of SpecificationPostBody from a JSON string
specification_post_body_instance = SpecificationPostBody.from_json(json)
# print the JSON string representation of the object
print SpecificationPostBody.to_json()
# convert the object into a dict
specification_post_body_dict = specification_post_body_instance.to_dict()
# create an instance of SpecificationPostBody from a dict
specification_post_body_form_dict = specification_post_body.from_dict(specification_post_body_dict)
[Back to Model list] [Back to API list] [Back to README]