PennController for IBEX › Forums › Support › Correct/Incorrect answers in .csv file › Reply To: Correct/Incorrect answers in .csv file
December 12, 2022 at 3:40 pm
#9794
Jeremy
Keymaster
Hi,
my experiment has filler sentences that won’t have any intended answer – for instance, some of them have an unusual word order which would make them ungrammatical. Is there a way to log these filler sentences as “null” or “none” using this method?
You could replace .log("CORRECT", getVar("CORRECT"))
with .log("CORRECT", row.TYPE=="filler" ? "NA" : getVar("CORRECT"))
I’m addressing the question from the last post on the dedicated topic created here
Jeremy