作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
对于以下示例,我如何计算 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/
我是一名优秀的程序员,十分优秀!