Hey @PGMM,
the stat.csv file should be organized into columns with a functional minimum of two columns named group
(numerical variable to separate the scans) and subject
(a string to identify each line of the csv). Each row corresponds to one subject in the order they appear in your files definition in the job file. The group variable is subsequently used for the visualization. The variable can be used to separate groups or experimental conditions etc… If you have only one condition to group set it to 1 in all rows. I introduced the subject variable with the idea that you could send fully deidentified results from the quantify folder and the subject identifiers separately.
Here’s a minimal example with 5 groups:
group,subject
1,P01S01
2,P02S01
3,P03S01
4,P04S01
And a more elaborate version with other variables:
age (years),group name,group,subject,sex
25,P01,1,P01S01,M
22,P02,2,P02S01,F
31,P03,3,P03S01,M
25,P04,4,P04S01,F
Let me know if this works for you.
Helge.
stat.csv (104 Bytes)