Skip to content

Latest commit

 

History

History
42 lines (34 loc) · 2.16 KB

SpecificationReturn.md

File metadata and controls

42 lines (34 loc) · 2.16 KB

SpecificationReturn

The view of the specification through an endpoint.

Properties

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]
id str the identifier for the resource. [optional]
updated_at datetime when the resource was last modified. [optional] [readonly]
created_at datetime When the resource was created. [optional] [readonly]
user str Who owns the resource. [optional]
username str [optional] [readonly]

Example

from neurosynth_compose_sdk.models.specification_return import SpecificationReturn

# TODO update the JSON string below
json = "{}"
# create an instance of SpecificationReturn from a JSON string
specification_return_instance = SpecificationReturn.from_json(json)
# print the JSON string representation of the object
print SpecificationReturn.to_json()

# convert the object into a dict
specification_return_dict = specification_return_instance.to_dict()
# create an instance of SpecificationReturn from a dict
specification_return_form_dict = specification_return.from_dict(specification_return_dict)

[Back to Model list] [Back to API list] [Back to README]