Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.11 KB

PointCommon.md

File metadata and controls

31 lines (23 loc) · 1.11 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]
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_form_dict = point_common.from_dict(point_common_dict)

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