gpt4 book ai didi

python - 为什么 R 和 Python Mann Whitney 不同?

转载 作者:太空宇宙 更新时间:2023-11-03 13:43:24 24 4
gpt4 key购买 nike

我想知道为什么在 python 和 R 中进行 mann whitney u 测试时我的答案如此不同。在 python 中:

from scipy.stats import mannwhitneyu
t = [1,2,3]
g = [4,5,6,7,8,9]
mannwhitneyu(t,g)
(0.0, 0.014092901073953692)

在 R 中:

t = c(1,2,3)
g = c(4,5,6,7,8,9)
wilcox.test(t,g, paired = FALSE)

Wilcoxon rank sum test

data: t and g
W = 0, p-value = 0.02381
alternative hypothesis: true location shift is not equal to 0

我想知道为什么 python 看起来更像是单方面测试。

最佳答案

scipy 版本被记录为返回单边 p 值。 (文档站点目前对我来说已关闭,所以我无法提供链接,但如果您查看 mannwhitneyu 函数的帮助,您可以看到它。)R 函数是 documented 到允许您指定双面性,默认为双面。

关于python - 为什么 R 和 Python Mann Whitney 不同?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25371196/

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