Group: Administrators
Posts: 13K,
Visits: 104K
|
What matters with trial selection via the <block> element's /trials attribute is the *proportions you enter into the pool*. For example
/ trials = [1-6=noreplace(a,b)]
will sample randomly (without replacement) <trial a> and <trial b> in *equal proportions* / a 1:1 ratio. You'll end up with exactly 3 "a"-trials and 3 "b"-trials in random order. With
/ trials = [1-6=noreplace(a,a,b)]
the ratio is 2:1, i.e., you'll end up with 4 "a"-trials and 2 "b"-trials in random order. As to your own task, what you'll want to do is thus:
/ trials = [1-10=noreplace(stimulus1, stimulus1, stimulus1, stimulus1, stimulus1, stimulus1, stimulus1, stimulus2, stimulus3, stimulus4)]
|