Skip to content

Commit 30639a9

Browse files
committed
docs(notebooks): correct variable assignment in brain surface examples
1 parent 5928bf7 commit 30639a9

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

docs/usage/brain_surface.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ ax1 = plot_brain_surface_figure(plot_data, surf="veryinflated", ax=axes[0,0], ti
9696
ax2 = plot_brain_surface_figure(plot_data, surf="inflated", ax=axes[0,1], title_name="inflated")
9797
ax3 = plot_brain_surface_figure(plot_data, surf="midthickness", ax=axes[0, 2], title_name="midthickness")
9898
ax4 = plot_brain_surface_figure(plot_data, surf="sphere", ax=axes[1,0], title_name="sphere")
99-
ax4 = plot_brain_surface_figure(plot_data, surf="flat", ax=axes[1,1], title_name="flat")
99+
ax5 = plot_brain_surface_figure(plot_data, surf="flat", ax=axes[1,1], title_name="flat")
100100
```
101101

102102

@@ -152,7 +152,7 @@ ax2 = plot_brain_surface_figure(plot_data, species="macaque", atlas="charm5", su
152152
ax3 = plot_brain_surface_figure(plot_data, species="macaque", atlas="charm5", surf="pial", ax=axes[0, 2], title_name="pial")
153153
ax4 = plot_brain_surface_figure(plot_data, species="macaque", atlas="charm5", surf="midthickness", ax=axes[1,0], title_name="midthickness")
154154
ax5 = plot_brain_surface_figure(plot_data, species="macaque", atlas="charm5", surf="white", ax=axes[1,1], title_name="white")
155-
ax5 = plot_brain_surface_figure(plot_data, species="macaque", atlas="charm5", surf="flat", ax=axes[1,2], title_name="flat")
155+
ax6 = plot_brain_surface_figure(plot_data, species="macaque", atlas="charm5", surf="flat", ax=axes[1,2], title_name="flat")
156156
```
157157

158158

notebooks/brain_surface.ipynb

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@
146146
},
147147
{
148148
"cell_type": "code",
149-
"execution_count": 10,
149+
"execution_count": null,
150150
"id": "6d8d7e87",
151151
"metadata": {},
152152
"outputs": [
@@ -174,7 +174,7 @@
174174
"ax2 = plot_brain_surface_figure(plot_data, surf=\"inflated\", ax=axes[0,1], title_name=\"inflated\")\n",
175175
"ax3 = plot_brain_surface_figure(plot_data, surf=\"midthickness\", ax=axes[0, 2], title_name=\"midthickness\")\n",
176176
"ax4 = plot_brain_surface_figure(plot_data, surf=\"sphere\", ax=axes[1,0], title_name=\"sphere\")\n",
177-
"ax4 = plot_brain_surface_figure(plot_data, surf=\"flat\", ax=axes[1,1], title_name=\"flat\")"
177+
"ax5 = plot_brain_surface_figure(plot_data, surf=\"flat\", ax=axes[1,1], title_name=\"flat\")"
178178
]
179179
},
180180
{
@@ -234,7 +234,7 @@
234234
},
235235
{
236236
"cell_type": "code",
237-
"execution_count": 12,
237+
"execution_count": null,
238238
"id": "38c0f8b0",
239239
"metadata": {},
240240
"outputs": [
@@ -262,7 +262,7 @@
262262
"ax3 = plot_brain_surface_figure(plot_data, species=\"macaque\", atlas=\"charm5\", surf=\"pial\", ax=axes[0, 2], title_name=\"pial\")\n",
263263
"ax4 = plot_brain_surface_figure(plot_data, species=\"macaque\", atlas=\"charm5\", surf=\"midthickness\", ax=axes[1,0], title_name=\"midthickness\")\n",
264264
"ax5 = plot_brain_surface_figure(plot_data, species=\"macaque\", atlas=\"charm5\", surf=\"white\", ax=axes[1,1], title_name=\"white\")\n",
265-
"ax5 = plot_brain_surface_figure(plot_data, species=\"macaque\", atlas=\"charm5\", surf=\"flat\", ax=axes[1,2], title_name=\"flat\")"
265+
"ax6 = plot_brain_surface_figure(plot_data, species=\"macaque\", atlas=\"charm5\", surf=\"flat\", ax=axes[1,2], title_name=\"flat\")"
266266
]
267267
},
268268
{

0 commit comments

Comments
 (0)