0 votes
We are analyzing our first CSV file from our first Guided Track experiment. We are in the process of writing an R script to clean up and then analyze our data and a short question came up. Is there an easy of getting rid of the changes in participants' responses from 3 | 4 | 2 to just 2, which is their final answer?
by (5.8k points)

1 Answer

0 votes
Best answer

I believe there are essentially two ways to avoid getting multiple answers to a question. One would be to disable *back buttons in the program so participants can't give multiple answers.

Unfortunately, at the moment GuidedTtrack does not have a feature to show only the latest answers in the CSV. I believe the easiest solution for you now would be to add some processing to the results CSV to extract the last answer.

Here is how this could be done in R with a regular expression:

x <- "3 | 4 | 2 "
sub(".*\\|([^\\|]*)$", "\\1", x)

Tiny demo: https://ideone.com/TbYOrc 

by (5.8k points)
selected by
Welcome to Guidedtrack Q&A, where you can ask questions and receive answers from other members of the community.
134 questions
144 answers
55 comments
40 users