Thank you!
A couple of follow-up questions if you don't mind: I attempted to randomly select 5 pictures from a pool of 1000 pictures and another 4 from another pool of 800 pictures with no replacement (so picture will only present once throughout the experiment). This would mean I will need 9 <picture> elements, right?
To do so, I created two lists (List A with 1000 items and List B with 800 items) and within each list, I set /replace = false and /poolsize = 1000 and 800, respectively. Then within those picture elements, I set /selectionrate = experiment. Would this do I what want it to do? I've attached part of the code below if it makes it easier to read.
I also want to randomize the position of these pictures. Can you point me to some resources if this question has been answered elsewhere?
Finally, if I want to repeat this until all stimuli have been exhausted (i.e., a total of 200 trials, each trial has 5 pictures from list A and 4 from list B), what would you recommend?
<item person1-1000>
/1= "person1"
...
/1000="person1000"
</item>
<item name1-800>
/1="name1"
...
/800="name800"
</item>
<list person>
/items=(1,2,....,1000)
/replace=false
/poolsize=1000
</list>
<list name>
/items=(1,2,...,800)
/replace=false
/poolsize=800
<list>
<picture person1>
/items=person
/select=list.person.nextindex
/selectionrate=experiment
</picture>
<picture person2>
/items=person
/select=list.person.nextindex
/selectionrate=experiment
</picture>
<picture person3>
/items=person
/select=list.person.nextindex
/selectionrate=experiment
</picture>
<picture person4>
/items=person
/select=list.person.nextindex
/selectionrate=experiment
</picture>
<picture person5>
/items=person
/select=list.person.nextindex
/selectionrate=experiment
</picture>
<picture name1>
/items=name
/select=list.name.nextindex
/selectionrate=experiment
</picture>
<picture name2>
/items=name
/select=list.name.nextindex
/selectionrate=experiment
</picture>
<picture name3>
/items=name
/select=list.name.nextindex
/selectionrate=experiment
</picture>
<picture name4>
/items=name
/select=list.name.nextindex
/selectionrate=experiment
</picture>