Repeating missed trials

I just had a look at your psyexp file

Does

print('repeatRows',repeatRows)

give the list you are expecting?

You appear to be starting with repeating row 1 (index 0)

repeatRows = [0]

I think you want

repeatRows = [ ]

I can’t see a loop to repeat any trials. You could put a new loop around a new set of your routines with repeatRows as the selected rows.

Thank you for your response, I dont how to do this as I would need to include a whole loop around the task routines?

print(‘repeatRows’,repeatRows) only shows that rows have not been repeated.

If you want to repeat any subset of trials then you should have a loop with a list of the row numbers you want to repeat as the selected rows.