Mixing questions between Qualtrics Blocks
I am creating a questionnaire on Qualtrics and I have 3 different blocks of questions. Let's call them A, B, and C
. Each of the blocks has 100 questions each. I want to randomly pick 15 questions from each of the blocks. That part is easy. I have used Randomization options available for each block.
However, I want to mix questions across these blocks. Currently, what I can get is
A1 A2 ... A15 B1, B2, ... B15 C1, C2, ... C15
All the questions from one block appear together.
I want to randomize this specific ordering as well. My requirements are:
- 15 questions from each block selected randomly from a pool of 100 in each block.
- Randomly displaying this pool of 45 questions to the user.
How can I do this? I've been stuck at this for hours now. Thanks for your help in advance.
python machine-learning deep-learning qualtrics
add a comment |
I am creating a questionnaire on Qualtrics and I have 3 different blocks of questions. Let's call them A, B, and C
. Each of the blocks has 100 questions each. I want to randomly pick 15 questions from each of the blocks. That part is easy. I have used Randomization options available for each block.
However, I want to mix questions across these blocks. Currently, what I can get is
A1 A2 ... A15 B1, B2, ... B15 C1, C2, ... C15
All the questions from one block appear together.
I want to randomize this specific ordering as well. My requirements are:
- 15 questions from each block selected randomly from a pool of 100 in each block.
- Randomly displaying this pool of 45 questions to the user.
How can I do this? I've been stuck at this for hours now. Thanks for your help in advance.
python machine-learning deep-learning qualtrics
add a comment |
I am creating a questionnaire on Qualtrics and I have 3 different blocks of questions. Let's call them A, B, and C
. Each of the blocks has 100 questions each. I want to randomly pick 15 questions from each of the blocks. That part is easy. I have used Randomization options available for each block.
However, I want to mix questions across these blocks. Currently, what I can get is
A1 A2 ... A15 B1, B2, ... B15 C1, C2, ... C15
All the questions from one block appear together.
I want to randomize this specific ordering as well. My requirements are:
- 15 questions from each block selected randomly from a pool of 100 in each block.
- Randomly displaying this pool of 45 questions to the user.
How can I do this? I've been stuck at this for hours now. Thanks for your help in advance.
python machine-learning deep-learning qualtrics
I am creating a questionnaire on Qualtrics and I have 3 different blocks of questions. Let's call them A, B, and C
. Each of the blocks has 100 questions each. I want to randomly pick 15 questions from each of the blocks. That part is easy. I have used Randomization options available for each block.
However, I want to mix questions across these blocks. Currently, what I can get is
A1 A2 ... A15 B1, B2, ... B15 C1, C2, ... C15
All the questions from one block appear together.
I want to randomize this specific ordering as well. My requirements are:
- 15 questions from each block selected randomly from a pool of 100 in each block.
- Randomly displaying this pool of 45 questions to the user.
How can I do this? I've been stuck at this for hours now. Thanks for your help in advance.
python machine-learning deep-learning qualtrics
python machine-learning deep-learning qualtrics
asked Nov 21 '18 at 3:13
Sachin MalhotraSachin Malhotra
817717
817717
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
There isn't any easy way to do this.
You could put all 300 questions in the same block. Then in a block before the 300 question block have 3 multiple choice questions (QA, QB, QC) where you have placeholders for the 100 questions as choices (QA: A1, A2, ..., A100; QB: B1, B2, ... , B100; QC: C1, C2, ..., C100). For each of those questions used Advanced Randomization to randomly display 15 choices. Hide the questions with JavaScript. Then in your 300 question block add display logic to each question based on whether its corresponding choice was displayed in the applicable QA, QB, QC question.
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404770%2fmixing-questions-between-qualtrics-blocks%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
There isn't any easy way to do this.
You could put all 300 questions in the same block. Then in a block before the 300 question block have 3 multiple choice questions (QA, QB, QC) where you have placeholders for the 100 questions as choices (QA: A1, A2, ..., A100; QB: B1, B2, ... , B100; QC: C1, C2, ..., C100). For each of those questions used Advanced Randomization to randomly display 15 choices. Hide the questions with JavaScript. Then in your 300 question block add display logic to each question based on whether its corresponding choice was displayed in the applicable QA, QB, QC question.
add a comment |
There isn't any easy way to do this.
You could put all 300 questions in the same block. Then in a block before the 300 question block have 3 multiple choice questions (QA, QB, QC) where you have placeholders for the 100 questions as choices (QA: A1, A2, ..., A100; QB: B1, B2, ... , B100; QC: C1, C2, ..., C100). For each of those questions used Advanced Randomization to randomly display 15 choices. Hide the questions with JavaScript. Then in your 300 question block add display logic to each question based on whether its corresponding choice was displayed in the applicable QA, QB, QC question.
add a comment |
There isn't any easy way to do this.
You could put all 300 questions in the same block. Then in a block before the 300 question block have 3 multiple choice questions (QA, QB, QC) where you have placeholders for the 100 questions as choices (QA: A1, A2, ..., A100; QB: B1, B2, ... , B100; QC: C1, C2, ..., C100). For each of those questions used Advanced Randomization to randomly display 15 choices. Hide the questions with JavaScript. Then in your 300 question block add display logic to each question based on whether its corresponding choice was displayed in the applicable QA, QB, QC question.
There isn't any easy way to do this.
You could put all 300 questions in the same block. Then in a block before the 300 question block have 3 multiple choice questions (QA, QB, QC) where you have placeholders for the 100 questions as choices (QA: A1, A2, ..., A100; QB: B1, B2, ... , B100; QC: C1, C2, ..., C100). For each of those questions used Advanced Randomization to randomly display 15 choices. Hide the questions with JavaScript. Then in your 300 question block add display logic to each question based on whether its corresponding choice was displayed in the applicable QA, QB, QC question.
answered Nov 21 '18 at 14:03
T. GibbonsT. Gibbons
3,7692924
3,7692924
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53404770%2fmixing-questions-between-qualtrics-blocks%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown