How to build a dynamic test? #3005
-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
I would use the survey plugin and create a likert-table to start with. My approach would then be to create an I was wondering how you would deal with a situation where you have more than three items, and the participant makes multiple same responses but with different response alternatives (e.g., 2 times strongly disagree and 2 times agree)? |
Beta Was this translation helpful? Give feedback.
I would use the survey plugin and create a likert-table to start with.
My approach would then be to create an
on_finish
function in which you extract the response to the current block extract the questions to which the same answer has been given. I would then create an additional survey block and use a conditional timeline to decide if that block needs to be shown or not. Finally, you should be able to set the pages parameter with a function to create dynamic parameters so that you can fill in the questions based on the results of what you calculate in theon_finish
function.I was wondering how you would deal with a situation where you have more than three items, and the participant make…