Hi! I am new to psychopy and coding and I’ve been working on this for a few days and can’t seem to figure it out… I have a list of 14 statements and there is a new and old version of each statement. I managed to program the experiment so that participants are randomly presented with 7 new statements and 7 old statements (they can only see one version of each statement). The statements are organized in a csv file with each type in a different column.
However, I want to add 7 foil statements to the experiment so that a total of 21 statements (7 of each type) are randomly presented. I’ve managed to add the foil statement but it is only presenting 14 trials and there is a random number of each statement.
This is what my code looks like:
Begin experiment:
import random
#randomize the Excel file by row
all_rows=[0,1,2,3,4,5,6,7,8,9,10,11,12,13] #if you have 20 rows in your Excel sheet, this field should be 0-19
random.shuffle(all_rows)
OLDorNEW=[“old”, “new”,“foil”]*7 #if you want 7 trials randomly selected between old and new, change 4 to 7 here
random.shuffle(OLDorNEW)
Begin routine:
trial_type = OLDorNEW[trials.thisN]
if trial_type == “new” or trial_type == “foil”:
continueRoutine = False
else:
thisExp.addData(‘trial_type’,trial_type)
And here’s the loop: