我需要使用(alpha)/ 2和df为下一个表计算t值:
https://www.fisterra.com/mbe/investiga/t_student/images/t_stud4.gif
测试:t(n-1,alpha / 2)和(gl = df)
我需要你返回以下值:
t(0.025,9) = 2,262
什么是正确的方法?
我刚刚找到以下表格,
import scipy.stats as sts
sts.t.ppf(0.95,9) = 1.8331129
用于交替表:
答案 0 :(得分:2)
尝试以下
import scipy.stats
def t(alpha, gl):
return scipy.stats.t.ppf(1-(alpha/2), gl)
您可以使用
进行测试print(t(0.05,9))
结果将是2.262