File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change @@ -511,7 +511,7 @@ wf.set_output(
511
511
## Run Workflow Run
512
512
513
513
``` {code-cell} ipython3
514
- :tags: []
514
+ :tags: [hide-output ]
515
515
516
516
from pydra import Submitter
517
517
Original file line number Diff line number Diff line change @@ -799,11 +799,8 @@ wf.set_output(
799
799
### Run Workflow Run
800
800
801
801
``` {code-cell} ipython3
802
- ---
803
- jupyter:
804
- outputs_hidden: true
805
- tags: []
806
- ---
802
+ :tags: [hide-output]
803
+
807
804
from pydra import Submitter
808
805
809
806
with Submitter(plugin='cf', n_procs=1) as submitter:
@@ -816,13 +813,15 @@ print(results)
816
813
817
814
## Let's Plot!
818
815
819
- We only use 2 subjects, so it's reasonable the following plots have nothing survived from testing.
816
+ We only use 5 subjects, so it's reasonable the following plots have nothing survived from testing.
820
817
821
818
+++
822
819
823
820
### Cluster Thresholding
824
821
825
822
``` {code-cell} ipython3
823
+ :tags: [hide-input]
824
+
826
825
from IPython.display import Image
827
826
ct_list = glob.glob(os.path.join(workflow_out_dir, "secondlevel_cluster_thresholded*.jpg"))
828
827
Image(filename=ct_list[0])
@@ -831,20 +830,26 @@ Image(filename=ct_list[0])
831
830
### Multiple Comparison
832
831
833
832
``` {code-cell} ipython3
833
+ :tags: [hide-input]
834
+
834
835
mc_list = glob.glob(os.path.join(workflow_out_dir, "secondlevel_multiple_comp*.jpg"))
835
836
Image(filename=mc_list[0])
836
837
```
837
838
838
839
### Paramatric Test
839
840
840
841
``` {code-cell} ipython3
842
+ :tags: [hide-input]
843
+
841
844
pt_list = glob.glob(os.path.join(workflow_out_dir, "secondlevel_paramatric*.jpg"))
842
845
Image(filename=pt_list[0])
843
846
```
844
847
845
848
### Nonparamatric Test
846
849
847
850
``` {code-cell} ipython3
851
+ :tags: [hide-input]
852
+
848
853
npt_list = glob.glob(os.path.join(workflow_out_dir, "secondlevel_permutation*.jpg"))
849
854
Image(filename=npt_list[0])
850
855
```
You can’t perform that action at this time.
0 commit comments