[open] Define variable with inline code
Hi,
Short question (I think). We're busy setting up an experiment and for each condition we want to show a random picture. Of course we also want to randomize the order of conditions. The idea is to randomize the order of the pictures in the loop, while predefining the order of the conditions (agency and valence) and then run through the loop in a random order.
The problem is how to place pictures from python into the loop, using inline scripting.
The code we have so far is this:
agency = [1,1,1,1,2,2,2,2,]
val = [1,1,2,2,1,1,2,2]
names = [1,2,3,4,5,6,7,8]
import random
random.shuffle(names)
so the resulting loop we want to go through could look like this:
Hopefully, you could help us with the code that defines our loop. Many thanks,
Stefan

Comments
Hi Stefan,
I think you don't need to specify the values of your variables in a loop item in the GUI anymore. You can simply
set()the variables in an inline_script item.More specifically:
Declare your variable lists:
Append an inline_script item to your block sequence and place the following code in its Prepare phase tab:
Set number of cycles:
Set the number of cycles in your block loop to the length of your lists (i.e. in your case 8 cycles).
Determine the trial values:
Append an inline_script item to the beginning of your trial sequence and place the following code in its Prepare phase tab (see comments for more info):
Now you can use the variables 'trial_ag', 'trial_val', and 'trial_name' as you would use them if they were defined in a loop item.
Eventually, your overview area should look something like this:
For a working example experiment, see:
Does that make sense? Please let us know if you have any further questions!
Best,
Lotje
Did you like my answer? Feel free to
