【Python】python中p-value的实现

案例:tt=(sm-m)/np.sqrt(sv/float(n))#t-statisticformeanpval=stats.t.sf(np.abs(tt),n-1)*2#two-sidedpvalue=Prob(abs(t)tt)

返回顶部