UiL-OTS-labs / jspsych-vislexdec-vp

This respository implements a visual lexical decision with visual prime
GNU General Public License v2.0
0 stars 0 forks source link

Stimuli are currently not randomised. #2

Closed maartenuni closed 4 years ago

maartenuni commented 4 years ago

Currently the stimuli are loaded as defined in the list. This feature should be implemented prior to use in the field.

jcvanelst commented 4 years ago

can you elaborate on this? The trial setup has options: randomise = true or randomise = false, like here:

var practice_procedure = {
  timeline:[
    present_fixation, 
    present_prime, 
    present_word, 
    present_feedback
    ],
  timeline_variables: practice_items,
  randomize_order:false 
};

var trial_procedure = {
  timeline:[
    present_fixation, 
    present_prime, 
    present_word, 
    ],
  timeline_variables: stimuli.table,
  randomize_order:true 
};

So, in this case, the practice items are fixed, the others not....

maartenuni commented 4 years ago

Hoi Jacco,

Wat je zegt klopt! Dit issue is ouder dan die code. Het is dus inmiddels gefikst. Nu maar hopen dat hier geen randomization met constraints vereist is. Dit is misschien iets om te overleggen met Iris/Marijn.

Toegevoegd in: c5bc110099d6816b4526d27e6c67dcbf0dbd70d4 met de wat onhandige commit message "practice makes perfect".

mvg,

Maarten