Skip to content

Commit bb773d3

Browse files
committed
FIX: reducing size of titles
1 parent be3d366 commit bb773d3

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

notebooks/example_1stlevel.ipynb

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"cell_type": "markdown",
2323
"metadata": {},
2424
"source": [
25-
"# Imports\n",
25+
"## Imports\n",
2626
"\n",
2727
"First, we need to import all modules we later want to use."
2828
]
@@ -49,7 +49,7 @@
4949
"cell_type": "markdown",
5050
"metadata": {},
5151
"source": [
52-
"# Experiment parameters\n",
52+
"## Experiment parameters\n",
5353
"\n",
5454
"It's always a good idea to specify all parameters that might change between experiments at the beginning of your script."
5555
]
@@ -83,7 +83,7 @@
8383
"cell_type": "markdown",
8484
"metadata": {},
8585
"source": [
86-
"# Specify Nodes\n",
86+
"## Specify Nodes\n",
8787
"\n",
8888
"Initiate all the different interfaces (represented as nodes) that you want to use in your workflow."
8989
]
@@ -123,7 +123,7 @@
123123
"cell_type": "markdown",
124124
"metadata": {},
125125
"source": [
126-
"# Specify GLM contrasts\n",
126+
"## Specify GLM contrasts\n",
127127
"\n",
128128
"To do any GLM analysis, we need to also define the contrasts that we want to investigate. If we recap, we had three different conditions in the **fingerfootlips** task in this dataset:\n",
129129
"\n",
@@ -164,7 +164,7 @@
164164
"cell_type": "markdown",
165165
"metadata": {},
166166
"source": [
167-
"# Specify GLM Model\n",
167+
"## Specify GLM Model\n",
168168
"\n",
169169
"The next step is now to get information such as stimuli onset, duration and other regressors into the GLM model. For this we need to create a helper function, in our case called ``subjectinfo``.\n",
170170
"\n",
@@ -482,7 +482,7 @@
482482
"cell_type": "markdown",
483483
"metadata": {},
484484
"source": [
485-
"# Specify input & output stream\n",
485+
"## Specify input & output stream\n",
486486
"\n",
487487
"Specify where the input data can be found & where and how to save the output data."
488488
]
@@ -535,7 +535,7 @@
535535
"cell_type": "markdown",
536536
"metadata": {},
537537
"source": [
538-
"# Specify Workflow\n",
538+
"## Specify Workflow\n",
539539
"\n",
540540
"Create a workflow and connect the interface nodes and the I/O stream to each other."
541541
]
@@ -586,7 +586,7 @@
586586
"cell_type": "markdown",
587587
"metadata": {},
588588
"source": [
589-
"# Visualize the workflow\n",
589+
"## Visualize the workflow\n",
590590
"\n",
591591
"It always helps to visualize your workflow."
592592
]
@@ -629,7 +629,7 @@
629629
"cell_type": "markdown",
630630
"metadata": {},
631631
"source": [
632-
"# Run the Workflow\n",
632+
"## Run the Workflow\n",
633633
"\n",
634634
"Now that everything is ready, we can run the 1st-level analysis workflow. Change ``n_procs`` to the number of jobs/cores you want to use."
635635
]
@@ -649,7 +649,7 @@
649649
"cell_type": "markdown",
650650
"metadata": {},
651651
"source": [
652-
"# Inspect output\n",
652+
"## Inspect output\n",
653653
"\n",
654654
"Let's check the structure of the output folder, to see if we have everything we wanted to save. You should have nine contrast images (``con_*.nii`` for T-contrasts and ``ess_*.nii`` for T-contrasts) and nine statistic images (``spmT_*.nii`` and ``spmF_*.nii``) for every subject and smoothing kernel."
655655
]
@@ -721,7 +721,7 @@
721721
"cell_type": "markdown",
722722
"metadata": {},
723723
"source": [
724-
"# Visualize results\n",
724+
"## Visualize results\n",
725725
"\n",
726726
"Let's look at the contrasts of one subject that we've just computed. First, let's see what the difference of smoothing is for the contrast **`average`**"
727727
]
@@ -907,7 +907,7 @@
907907
"cell_type": "markdown",
908908
"metadata": {},
909909
"source": [
910-
"# Special case\n",
910+
"## Special case\n",
911911
"\n",
912912
"There is something special with the **Finger** contrast in all subjects. So let's take a look at all of them."
913913
]

0 commit comments

Comments
 (0)