计算python中下一个表的T Student Test

时间:2016-10-27 21:57:15

标签: python scipy statistics

我需要使用(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

用于交替表:

http://image.slidesharecdn.com/tablat-student-120318105418-phpapp02/95/tabla-t-student-1-728.jpg?cb=1332086091

1 个答案:

答案 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