I need to build a survey that includes branches that are randomized. Basically, if an interviewee answers (a) for question 1, for example, then message (b) or (c) show up, with 50% probability each.
I need to build a survey that includes branches that are randomized. Basically, if an interviewee answers (a) for question 1, for example, then message (b) or (c) show up, with 50% probability each.
Thank you for your help. I am trying to randomize two different groups of questions. Basically, I want some people to see one group and other people to see the other group of questions.
After I collect all the data, I would like to have more or less 50% of the people responding the first group, and 50% responding the other group of questions.
I am still not sure how to do this. Can you help me with that? I attached a file so you can take a look at what I am doing.
Attached is a sample for that shows a branch that happens 50% of the
time. The key calculation is: concat(( round(once(random()) * 100, 0)
mod 2 ), " ")
The once() tag ensure that the random value is calculated only once
(e.g., the first time the form is created). If you remove it, the
random value to change each time a form is loaded (e.g, to edit the
form).
Thank you for your help. I am trying to randomize two different groups of questions. Basically, I want some people to see one group and other people to see the other group of questions.
After I collect all the data, I would like to have more or less 50% of the people responding the first group, and 50% responding the other group of questions.
I am still not sure how to do this. Can you help me with that? I attached a file so you can take a look at what I am doing.
···
On Sun, Oct 12, 2014 at 9:48 AM, Yaw Anokwa wrote:
Attached is a sample for that shows a branch that happens 50% of the
time. The key calculation is: concat(( round(once(random()) * 100, 0)
mod 2 ), " ")
The once() tag ensure that the random value is calculated only once
(e.g., the first time the form is created). If you remove it, the
random value to change each time a form is loaded (e.g, to edit the
form).
Yaw
Need ODK services? http://nafundi.com provides form design, server
setup, professional support, and software development for ODK.
Thank you for your help. I am trying to randomize two different groups
of questions. Basically, I want some people to see one group and other
people to see the other group of questions.
After I collect all the data, I would like to have more or less 50% of
the people responding the first group, and 50% responding the other group
of questions.
I am still not sure how to do this. Can you help me with that? I
attached a file so you can take a look at what I am doing.