本文介绍了Python wilcoxon:不等N的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

Rs wilcox.test 可以采用不同长度的向量,但 scipy.stats 中的 wilcoxon 不能:我收到 unequal N 错误消息.

Rs wilcox.test can take different length vectors, but the wilcoxon from scipy.stats cannot: I get an unequal N error message.

from scipy.stats import wilcoxon
wilcoxon(range(10), range(12))

有没有办法在 Python 中获得 Rs 行为?

Is there a way to get Rs behavior in Python?

推荐答案

根据 R 文档:

Performs one- and two-sample Wilcoxon tests on vectors of data; the latter is also known as ‘Mann-Whitney’ test.

所以就用

from scipy.stats import mannwhitneyu
mannwhitneyu(range(10), range(12))
# (50.0, 0.26494055917435472)

这篇关于Python wilcoxon:不等N的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 20:07