Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.32 KB

File metadata and controls

34 lines (25 loc) · 1.32 KB

PointCommon

Properties

Name Type Description Notes
analysis str [optional]
cluster_size float size of the cluster in cubic millimeters [optional]
subpeak bool whether the reported peak is the max-peak statistic or a sub-maxmimal peak. [optional]
deactivation bool wheather the coordinate represents an decrease in activation relative to a baseline [optional]
is_seed bool whether the coordinate is marked as a seed location [optional]
order int determines the row to display the coordinate [optional]

Example

from neurostore_sdk.models.point_common import PointCommon

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

# convert the object into a dict
point_common_dict = point_common_instance.to_dict()
# create an instance of PointCommon from a dict
point_common_from_dict = PointCommon.from_dict(point_common_dict)

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