Apache Commons Math 上的 Mann-Whitney U 检验
Mann-Whitney U Test on Apache Commons Math
我目前正在尝试使用 Mann-Whitney U 检验,我发现 Apache Commons Math 已经实现了它。查阅了多个网站(Wiki是其中之一),他们表示本次测试的U统计量是U1和U2中最小的。但是,当我查看 Apache Commons Math MannWhitneyUTest.mannWhitneyU()
方法时,它 returns U1 和 U2 的最大值。
我的问题是为什么 Apache Commons returns 返回这两个值中的最大值,而我在网上找到的所有其他来源都指示返回最小值?
这是一个错误。见this issue.的讨论 进行测试时,使用最小值。应返回最小值。
我目前正在尝试使用 Mann-Whitney U 检验,我发现 Apache Commons Math 已经实现了它。查阅了多个网站(Wiki是其中之一),他们表示本次测试的U统计量是U1和U2中最小的。但是,当我查看 Apache Commons Math MannWhitneyUTest.mannWhitneyU()
方法时,它 returns U1 和 U2 的最大值。
我的问题是为什么 Apache Commons returns 返回这两个值中的最大值,而我在网上找到的所有其他来源都指示返回最小值?
这是一个错误。见this issue.的讨论 进行测试时,使用最小值。应返回最小值。