gpt4 book ai didi

scipy - Scipy stats 中的 t 检验是 Welch 的 t 检验

转载 作者:行者123 更新时间:2023-12-03 23:16:07 25 4
gpt4 key购买 nike

我试图确定 sci-py 中的默认 t 检验是韦尔奇的 t 检验还是学生的 t 检验。我在任何地方都找不到答案。我使用以下代码进行 t 检验分析。如果不是韦尔奇的,谁能告诉我如何做韦尔奇的

t_test = scipy.stats.ttest_ind(a, b, axis=0) 

谢谢
艾玛

最佳答案

这两个测试之间的差异是关于等方差的假设。 Welch 的检验不假设方差相等。如果您通过 equal_var=False到您的 t 检验( scipy.stats.ttest_ind(a, b, equal_var=False, axis=0) 它将进行 Welch 检验。

来自 docs :

equal_var : bool, optional If True (default), perform a standard independent 2 sample test that assumes equal population variances. If False, perform Welch’s t-test, which does not assume equal population variance.

关于scipy - Scipy stats 中的 t 检验是 Welch 的 t 检验,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50550935/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com