Dear Sebastian,
The issue here is that '.CSV' stands for "comma-separated values". Your .csv file contains cells that contain content like this:
[audio/birdmanhead_0.wav,audio/birdmanhead_1.wav,audio/birdmanhead_2.wav]
i.e. they contain commas, so when being imported, it seems like there are more than your three specified columns (i.e. the cell above looks like it actually contains values for three cells rather than one). This means that the .csv importer gets confused, as some rows will have different numbers of columns, with some cells appearing blank, with no header name.
The importer we use should be more robust to this (blank cells leads to 'nan' values, meaning 'not a number'). This bug has been noted here but not yet addressed:
<
https://github.com/psychopy/psychopy/issues/1147>
i.e. you should get a more obvious error, and not lose the apparent structure in your file (the loops are still there, but Builder isn't displaying them).
But a quick work-around for you here is to simply wrap those cells in quotes, so that the commas get ignored, e.g.
"[audio/birdmanhead_0.wav,audio/birdmanhead_1.wav,audio/birdmanhead_2.wav]"
Or alternatively use an xlsx file instead of csv.
I've attached repaired .csv and Builder .psyexp files for you.
Regards,
Michael
> --
> You received this message because you are subscribed to the Google Groups "psychopy-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an email to
psychopy-user...@googlegroups.com.
> To post to this group, send email to
psychop...@googlegroups.com.
> To view this discussion on the web visit
https://groups.google.com/d/msgid/psychopy-users/5fed3576-38aa-436d-93e4-efef89990f51%40googlegroups.com.
> For more options, visit
https://groups.google.com/d/optout.
> <gating.zip>