qualtrics

In Qualtrics Surveys, how can you save the response to an item into embedded data when the next button is clicked?

时光怂恿深爱的人放手 提交于 2019-11-30 07:36:20
问题 I actually just spent a really long time figuring out answers to this question by piecing it together from the spotty documentation and a lot of web console inspection. Since by far the most useful information came from Stack Overflow, I wanted to put this question, and its answer, here for the future benefit of anyone else searching. The question is, how can you add javascript to a question that will immediately save that question's answer into an embedded data field? Immediately, as in, not

How to get a slider's value in Qualtrics using jQuery?

橙三吉。 提交于 2019-11-29 16:21:47
I need to get the value of a slider in Qualtrics to display (a transformation of) it to the user. Here is the page I am working on, so you can understand what follows. I have tried many different things, none of which works. My first idea was of course: var val = $j('#QID11~1~toolTip').text(); $j('#value').text(val) Nothing shows up. Then, I tried to use the input: var val = $j("input").attr("value"); $j('#value').text(val); (Or alternatively, $j('#QID11~1~result') instead of $j("input") , or .val() instead of .attr("value") ) Same thing: nothing shows up. However, interestingly, when I

Randomization in Qualtrics using Photos or Graphics and Loop and Merge

你。 提交于 2019-11-28 11:34:39
I am creating a survey in Qualtrics with many photos, say 1000. I want to have each survey participant answer, say 6, questions per photo. Each participant will see 5 photos that are randomly assigned. Before looking into things, I assumed that there would be a way to upload the 1000 photos, create one block in Qualtrics (with the 6 questions) and then simply randomize the photo that occurs and have this be repeated this 5 times. But it seems like this is either not possible or not obvious. I called Qualtrics and they said that I would manually need to create 1000 blocks (each block would be

How to loop over hundreds of images in Qulatrics - help needed to implement code

回眸只為那壹抹淺笑 提交于 2019-11-28 10:32:41
问题 I would like to use Qualtrics to get ratings for over 700 images (i.e., participants will have to indicate how negative or positive they find them). The question will be exactly the same for each image, yet there seems to be no straightforward way to just create the question once and then loop over all the images I want participants to rate. Obviously, I don't really want to write the same question 700 times. I found a relevant answer here on Stack Overflow that seems to suggest a good

How to get a slider's value in Qualtrics using jQuery?

十年热恋 提交于 2019-11-28 10:19:15
问题 I need to get the value of a slider in Qualtrics to display (a transformation of) it to the user. Here is the page I am working on, so you can understand what follows. I have tried many different things, none of which works. My first idea was of course: var val = $j('#QID11~1~toolTip').text(); $j('#value').text(val) Nothing shows up. Then, I tried to use the input: var val = $j("input").attr("value"); $j('#value').text(val); (Or alternatively, $j('#QID11~1~result') instead of $j("input") , or

Randomization in Qualtrics using Photos or Graphics and Loop and Merge

断了今生、忘了曾经 提交于 2019-11-27 06:20:01
问题 I am creating a survey in Qualtrics with many photos, say 1000. I want to have each survey participant answer, say 6, questions per photo. Each participant will see 5 photos that are randomly assigned. Before looking into things, I assumed that there would be a way to upload the 1000 photos, create one block in Qualtrics (with the 6 questions) and then simply randomize the photo that occurs and have this be repeated this 5 times. But it seems like this is either not possible or not obvious. I

Gather multiple sets of columns [duplicate]

这一生的挚爱 提交于 2019-11-25 23:01:37
问题 This question already has answers here : Reshaping multiple sets of measurement columns (wide format) into single columns (long format) (7 answers) Closed 2 years ago . I have data from an online survey where respondents go through a loop of questions 1-3 times. The survey software (Qualtrics) records this data in multiple columns—that is, Q3.2 in the survey will have columns Q3.2.1. , Q3.2.2. , and Q3.2.3. : df <- data.frame( id = 1:10, time = as.Date(\'2009-01-01\') + 0:9, Q3.2.1. = rnorm