如何获得 T 学生分布的值?
How can I get the value of a T-student distribution?
我一直在查看 apache commons math 的文档,我发现它也计算分布,但我不明白它是如何工作的。
我有两个值
- 自由度 = 13
- 置信区间 = 0.95
我的问题是它没有产生我需要的值,
objective 是:
结果=1.771
import org.apache.commons.math3.distribution.TDistribution
fun calculo(a:Double, b:Double): Double {
val distf = TDistribution(a,b)
return distf.getNumericalMean()
}
fun main(args: Array<String>) {
val ko = calculo(13,0.95)
println(ko)
}
```
您可以使用以下内容:
new org.apache.commons.math3.distribution.TDistribution(deg_freedom).
inverseCumulativeProbability(probability)
其中deg_freedom=13,概率=0.95。
我一直在查看 apache commons math 的文档,我发现它也计算分布,但我不明白它是如何工作的。
我有两个值
- 自由度 = 13
- 置信区间 = 0.95
我的问题是它没有产生我需要的值, objective 是:
结果=1.771
import org.apache.commons.math3.distribution.TDistribution
fun calculo(a:Double, b:Double): Double {
val distf = TDistribution(a,b)
return distf.getNumericalMean()
}
fun main(args: Array<String>) {
val ko = calculo(13,0.95)
println(ko)
}
```
您可以使用以下内容:
new org.apache.commons.math3.distribution.TDistribution(deg_freedom).
inverseCumulativeProbability(probability)
其中deg_freedom=13,概率=0.95。