You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"Regions which are \"children\" of a Swanson region will not be included in the acronyms. For example `PTLp` is in Swanson, but its children `VISa` and `VISrl`(i.e. a finer parcellation of `PTLp`) are not:"
79
+
],
80
+
"metadata": {
81
+
"collapsed": false
82
+
}
83
+
},
84
+
{
85
+
"cell_type": "code",
86
+
"execution_count": null,
87
+
"outputs": [],
88
+
"source": [
89
+
"# Example: Check if PTLp is in Swanson\n",
90
+
"np.isin(['PTLp'], swanson_ac)\n",
91
+
"# Example: Check if VISa and VISrl are in Swanson\n",
92
+
"np.isin(['VISa', 'VISrl'], swanson_ac)"
93
+
],
94
+
"metadata": {
95
+
"collapsed": false,
96
+
"pycharm": {
97
+
"name": "#%%\n"
98
+
}
99
+
}
100
+
},
101
+
{
102
+
"cell_type": "markdown",
103
+
"source": [
104
+
"As such, you can only plot value for a given region that is in Swanson. This was done to ensure there is no confusion about how data is aggregated and represented per region (for example, if you were to input values for both `VISa` and `VISrl`, it is unclear whether the mean, median or else should have been plotted onto the `PTLp` area - instead, we ask you to do the aggregation yourself and pass this into the plotting function).\n",
0 commit comments