Hello! I want to build a survey where respondents can make multiple choices which lead to different branches and result in different overall paths. I was wondering if there was an automatic way to count the frequency of each possible path that was taken by the respondents. So, I'm trying to find out the ratio of each overall path which was taken, not just the ratio of each choice. I hope my explanation is understandable. I appreciate any help!
How to count frequency of paths taken?
Best answer by Markus
Update in case someone is looking to also analyze the frequency of different paths.
I ended up not using scores as just adding up point values would not give me a description of which option was selected for each choice. So, instead I used embedded data to set a variable for each choice (e.g., for the first choice it would be: choice1 = 1A when option A was chosen and choice1 = 1B when option B was chosen).
Then I created a new field (which I called "path") in the data section by concatenating all the choice variables. This way I would get a string of characters (e.g., path = 1A | 2B | 3B | 4A...) which uniquely describes the path taken by each respondent. Lastly, I can then use this path variable to determine the frequency of each possible path taken.
Leave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.