There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply () below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
You can also find further discussion and get answers to your questions over in Language Help.
Agree with a comment or answer? Like () to up-vote the contribution!
Hello,
This topic is not clear to me. It says to check the solution, to check how it works. However, this number is not explained how to be calculated:
A topic where it encourages keeping in mind the sample size, calculates beforehand and not to interfere with the test without explaining how to calculate it. It’s really poor, keeping in mind the previous module lacks the simplicity in the examples provided and/or additional resources to reinforce its content.
I am also confused how the sample size is equal to 2060 - my code is identical to the solution, but the calculator does not show 2060, it is showing me 180000 instead.
I was hoping to be taught the function that the “sample size calculator” is using. What is the point of driving home that we need to calculate sample sizes in advance but not giving us the mathmatical tools to do so. Or are we just ment to bookmark the generator?
Saying that, I guess the function is here in the html code:
function getSampleSize(minimum_detectable, significance, conversion_rate) {
let zscore = 1.959964
if(significance == 0.15) {
zscore = 1.439531
}
else if(significance == 0.1){
zscore = 1.644854
}
let factor = 2*(0.8416212+zscore)**2
let conv_b = conversion_rate * (1+minimum_detectable)
let numerator = Math.sqrt(conversion_rate * (1 - conversion_rate) + conv_b * (1-conv_b));
let denominator = Math.abs(conversion_rate * minimum_detectable);
let min_sample_size = factor * Math.pow(numerator/denominator, 2);
return parseFloat(min_sample_size.toPrecision(3));