Group: Administrators
Posts: 13K,
Visits: 104K
|
Then you should be able to simply set up a total of four <trial> elements -- one displaying a positive word in blue, one displaying a positive word in green, one displaying a negative word in green, one displaying a negative word in blue -- and sample from those trial elements in the desired proportions (the latter can be efficiently expressed via <list> elements). In a nutshell:
<expt> / blocks = [1=c1block] / subjects = (1 of 2) / groupassignment = groupnumber </expt>
<expt> / blocks = [1=c2block] / subjects = (2 of 2) / groupassignment = groupnumber </expt>
<block c1block> / trials = [1-88=list.c1triallist] </block>
<block c2block> / trials = [1-88=list.c2triallist] </block>
<list c1triallist> / items = (trial.pos_blue, trial.neg_green, trial.pos_green, trial.neg_blue) / poolsize = 88 / itemprobabilities = [.45; .45; .05; .05;] </list>
<list c2triallist> / items = (trial.pos_blue, trial.neg_green, trial.pos_green, trial.neg_blue) / poolsize = 88 / itemprobabilities = [.05; .05; .45; .45;] </list>
<trial pos_blue> / trialduration = 10 </trial>
<trial pos_green> / trialduration = 10 </trial>
<trial neg_blue> / trialduration = 10 </trial>
<trial neg_green> / trialduration = 10 </trial>
|