There are a couple of things you can try.
First of all, make sure you've defined the attributes within the corresponding stimuli. That is, some of the stimuli should have something like:
While another group of stimuli like:
Then, in the stimulus pattern, you can do:
Note you only need to specify the name of the attribute, not the values.
Go ahead and give it a try first though?
First of all, make sure you've defined the attributes within the corresponding stimuli. That is, some of the stimuli should have something like:
Code:
{
"type": "image",
"content": "my_image1.png",
"my_attribute": "a"
}
Code:
{
"type": "image",
"content": "my_image1.png",
"my_attribute": "b"
}
Then, in the stimulus pattern, you can do:
Code:
"stimulus_pattern": {"order": "pseudorandom",
"attribute": "my_attribute",
"min_N": 1, "max_N": 3}
Go ahead and give it a try first though?