PennController for IBEX › Forums › Support › Question about assigning conditions, groups + randomization › Reply To: Question about assigning conditions, groups + randomization
Hi Kate,
Your Sequence
contains rshuffle("experiment", startsWith("experiment"))
and both your target and filler/MP trials have labels that start with “experiment” (it actually is the whole label for the latter) so the latter are included twice. Use startsWith("experiment_")
instead
The stack of .log
commands starting with .log("adjectivenumber", row.adjectivenumber)
are attached to the preceding .wait()
command relative to the Scale element. You want to attach it to the closing parenthesis of newTrial()
instead (the one before the comma you placed above Sequence
)
Jeremy