How can I identify what sentence was presented to my participant?

PennController for IBEX Forums Support How can I identify what sentence was presented to my participant?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #7555
    Lorrainy
    Participant

    Hey Jeremy,
    So, I have my results but I can’t see what sentence was presented to my participant. I used the rShuffle but on my results I didn’t find which item was shown (on my table there was an indication of item).

    Is there a way to see it? Or do I have to put a certain code?

    Thanks 😀

    My experiment: https://farm.pcibex.net/r/ANfXsF/
    I don’t know if I can send my results in here…

    • This topic was modified 2 years, 3 months ago by Jeremy. Reason: moved to support
    #7558
    Jeremy
    Keymaster

    Hi,

    You can use row. to reference cells from the current row when generating a trial from within Template( "table.csv", row =>, and you can use .log on the closing parenthesis of newTrial() to add a column to the end of each results line generated by the corresponding trial. So you can do something like this:

    Template("tarefa1Alvo.csv", row =>
      newTrial("tarefa1Alvo",
        // ...
      )
      .log("acuraciaAlvoT1" , getVar("acuraciaAlvoT1"))
      .log("ParticipantID", subjID)
      .log("Estimulo", row.estimulo)
    )

    Jeremy

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.