Maze task input in chunks

PennController for IBEX Forums Support Maze task input in chunks

Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #9865
    rberaldo
    Participant

    I’m trying to implement a maze task using github.com/vboyce/Ibex-with-Maze. The examples I found floating around use two sentences with the same length in number of words. However, I want to pass an array to this module so chunks instead of individual words are displayed. I tried creating a CSV in the following format

    
    Sentence;Distractor
    ["word1", "word2", "word3"];["dist1", "dist2", "dist3"]
    

    but that didn’t work. The maze module seems to support arrays, according to its documentation, but what is the correct format?

    Thanks in advance!

    #9866
    rberaldo
    Participant

    A second search brought up this post by Jeremy which gave me the solution: splitting the string by using a character other than a space, {s: row.sentence.split("~")}.

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