gpt4 book ai didi

julia - 使用 z 分数计算百分位数/概率

转载 作者:行者123 更新时间:2023-12-04 14:56:33 28 4
gpt4 key购买 nike

对于以下示例,我如何计算 julia 中的百分位数/概率值/尾部区域

 Example : N(1100, 200) #Normally distributed with mean 1100 & standard deviation 200 for lets say SAT score
x = 1030 #Lets say students SAT score

#manual calculation
z-score = (x-mean)/std.dev = 1030-1100 / 200 = -0.35
#using the probability table the tail area corresponding to this is 0.3632

可以使用 stats 基础包计算 zscore。

using StatsBase 
zscore([1030], 1100, 200)
# Out > 0.35

如何计算统计表中对应的概率(0.3632)?

最佳答案

将@DNF 的评论变成答案:

您可以使用 Distributions.jl 中的 cdf 函数:

julia> using Distributions

julia> cdf(Normal(1100, 200), 1030)
0.3631693488243809

关于julia - 使用 z 分数计算百分位数/概率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67866784/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com