Hello, I want to first get a random discrete number between 0-100 from a geometric distribution, and then store it as an embedded data.
1) At the beginning of the survey flow, I created an embedded variable: result_q
2) In the first question, I have the following have code:
Qualtrics.SurveyEngine.addOnload(function()
{
var min = 0;
var max = 100;
var prob = 0.1;
function geoDist(min, max, prob) {
var q = 0;
var p = Math.pow(prob, 1 / (max - min));
while (true) {
q = Math.ceil(Math.log(1-Math.random()) / Math.log(p)) + (min - 1);
if (q <= max) {
return q;
Qualtrics.SurveyEngine.setEmbeddedData('result_q', q);
}
}
}
});
When I paste ${e://Field/result_q} in the next question I don't get any result. Could anyone help me please? If you have other ways of getting the number, also welcome.
Thank you!
Return a random discrete number between 0-100 from a geometric distribution
Best answer by TomG
You never called the geoDist function. Try:
Qualtrics.SurveyEngine.addOnload(function() {
var min = 0;
var max = 100;
var prob = 0.1;
Qualtrics.SurveyEngine.setEmbeddedData('result_q', geoDist(min,max,prob));
function geoDist(min, max, prob) {
var q = 0;
var p = Math.pow(prob, 1 / (max - min));
while (true) {
q = Math.ceil(Math.log(1-Math.random()) / Math.log(p)) + (min - 1);
if (q <= max) {
return q;
}
}
}
});
Sign up
Already have an account? Login
Welcome! To join the Qualtrics Experience Community, log in with your existing Qualtrics credentials below.
Confirm your username, share a bit about yourself, Once your account has been approved by our admins then you're ready to explore and connect .
Free trial account? No problem. Log in with your trial credentials to join.
No free trial account? No problem! Register here
Already a member? Hi and welcome back! We're glad you're here 🙂
You will see the Qualtrics login page briefly before being taken to the Experience Community
Login with Qualtrics
Welcome! To join the Qualtrics Experience Community, log in with your existing Qualtrics credentials below.
Confirm your username, share a bit about yourself, Once your account has been approved by our admins then you're ready to explore and connect .
Free trial account? No problem. Log in with your trial credentials to join. No free trial account? No problem! Register here
Already a member? Hi and welcome back! We're glad you're here 🙂
You will see the Qualtrics login page briefly before being taken to the Experience Community
Login to the Community
Welcome! To join the Qualtrics Experience Community, log in with your existing Qualtrics credentials below.
Confirm your username, share a bit about yourself, Once your account has been approved by our admins then you're ready to explore and connect .
Free trial account? No problem. Log in with your trial credentials to join.
No free trial account? No problem! Register here
Already a member? Hi and welcome back! We're glad you're here 🙂
You will see the Qualtrics login page briefly before being taken to the Experience Community
Login with Qualtrics
Welcome! To join the Qualtrics Experience Community, log in with your existing Qualtrics credentials below.
Confirm your username, share a bit about yourself, Once your account has been approved by our admins then you're ready to explore and connect .
Free trial account? No problem. Log in with your trial credentials to join. No free trial account? No problem! Register here
Already a member? Hi and welcome back! We're glad you're here 🙂
You will see the Qualtrics login page briefly before being taken to the Experience Community
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
