Group: Administrators
Posts: 13K,
Visits: 105K
|
To have that page displayed, add
/ postinstructions = (end)
to all the <expt> elements in the script.
To reduce the number of trials, you'll want to edit the various <block>s' /trials attributes. E.g.
<block GenderStroop> / onblockbegin = [ values.phase = 2; ] / trials = [1 = instructions; 2 = getReady; 3-26 = noreplace(Stroop, Control)] </block>
runs 12 stroop and 12 control trials (in random order). Change it to
/ trials = [1 = instructions; 2 = getReady; 3-14 = noreplace(Stroop, Control)]
to run only 6 stroop and 6 control trials, for example.
|