这是一个非常简单的计算器。这里 mu 是随机变量的平均值,sigma 是平均值的一个标准差。您在工作中所做的事情与人们所做的一样,并且您必须计算围绕均值并在我们在此定义为下限和上限的参数内成功的概率。
这段Python代码。
变得简单,这样您就知道自己在处理什么。
结果应该是:
808到1450之间的分数百分比约为88.14%。
# Set the parameters mu = 1359 sigma = 77 lower_bound = 808 upper_bound = 1450 # Calculate the z-scores for the lower and upper bounds z_lower = (lower_bound - mu) / sigma z_upper = (upper_bound - mu) / sigma # Calculate the probabilities using the cumulative distribution function (CDF) prob_lower = norm.cdf(z_lower) prob_upper = norm.cdf(z_upper) # Calculate the percentage between the bounds percentage = (prob_upper - prob_lower) * 100 print(f"The percentage of scores between {lower_bound} and {upper_bound} is approximately {percentage:.2f}%.")
免责声明: 提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发到邮箱:[email protected] 我们会第一时间内为您处理。
Copyright© 2022 湘ICP备2022001581号-3