标签: excel-formula scipy statistics
我有一个Excel工作表,该工作表进行了一次抽样2尾部t检验以计算统计显着性。
计算的最后一步使用带有以下参数的excel TDIST公式:
确切的SciPy等效项是什么?
答案 0 :(得分:1)
from scipy import stats stats.t.sf(t_statistic, df=degrees_of_freedom) * 2
This answer有更多信息。