Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.48 KB

Result.md

File metadata and controls

35 lines (27 loc) · 1.48 KB

Result

describes the output of a meta-analysis

Properties

Name Type Description Notes
meta_analysis_id str the meta analysis this result was derived from. [optional]
cli_version str version of the command-line-tool that is uploading the results. [optional]
neurovault_collection NeurovaultCollectionReturn [optional]
methods_description str the description of the methods applied to create this result. [optional]
diagnostic_table str a text representation of a tsv that marks the contribution of each study to each particular cluster. [optional]
cli_args object additional parameters that were passed to the commandline tool at runtime. [optional]
status str [optional]

Example

from neurosynth_compose_sdk.models.result import Result

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

# convert the object into a dict
result_dict = result_instance.to_dict()
# create an instance of Result from a dict
result_form_dict = result.from_dict(result_dict)

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