neurocaps.typing.SchaeferParcelConfig#

class SchaeferParcelConfig[source]#

Bases: TypedDict

Type Definition for the Schaefer Parcellation Configurations.

A TypedDict representing the available subkeys (second level keys for “Schaefer”) for initializing the Schaefer parcellation in the TimeseriesExtractor or CAP classes. The structure is as follows:

{
    "n_rois": 400,
    "yeo_networks": 7,
    "resolution_mm": 1
}

Added in version 0.23.6.

Parameters:
  • n_rois (int) – Number of ROIs (Default=400). Options are 100, 200, 300, 400, 500, 600, 700, 800, 900, or 1000.

  • yeo_networks (int) – Number of Yeo networks (Default=7). Options are 7 or 17.

  • resolution_mm (int) – Spatial resolution in millimeters (Default=1). Options are 1 or 2.

See also

ParcelConfig

Type definition representing the configuration options and structure for the Schaefer and AAL parcellations.