| 127 | /*! More details on: http://en.wikipedia.org/wiki/Mann–Whitney_U */ |
| 128 | template <typename InputIterator1, typename InputIterator2> |
| 129 | double MannWhitney(InputIterator1 xBegin, InputIterator1 xEnd, InputIterator2 yBegin, InputIterator2 yEnd, bool useContinuity) { |
| 130 | return MannWhitneyWithSign(xBegin, xEnd, yBegin, yEnd, useContinuity).PValue; |
| 131 | } |
| 132 | |
| 133 | //! Wilcoxon test for two samples. |
| 134 | template <typename InputIterator1, typename InputIterator2> |
nothing calls this directly
no test coverage detected