jsPsych
jsPsych copied to clipboard
randomize_statement_order in likert-table in survey plugin not working
randomization doesn't happen
Confirmed that this is true for this code snippet:
let jsPsych = initJsPsych();
const trial = {
type: jsPsychSurvey,
pages: [
[
{
type: 'likert-table',
prompt: ' ',
randomize_statement_order: true,
statements: [
{prompt: 'I like to eat vegetables', name: 'VeggiesTable'},
{prompt: 'I like to eat fruit', name: 'FruitTable'},
{prompt: 'I like to eat meat', name: 'MeatTable'},
],
options: ['Strongly Disagree', 'Disagree', 'Neutral', 'Agree', 'Strongly Agree'],
}
]
],
};
jsPsych.run([trial]);