Is it possible to randomize the presentation of sentences using PCIbex’s randomize function with DashedSentence? I have not been able to find a straightforward way to do this. The following does not work:
PennController.ResetPrefix(null);
PennController.Template( randomize(PennController.GetTable("mystimuli.csv")) ,
row => [
"DashedSentence", {s: row.Sentence},
]
);
I’ve also tried this, which didn’t work, either:
PennController.ResetPrefix(null);
PennController.Sequence(randomize("DashedSentence"), "send");
PennController.Template( PennController.GetTable("mystimuli.csv") ,
row => [
"DashedSentence", {s: row.Sentence},
]
);
PennController.SendResults("send");