| 156 | //! Wilcoxon test for two samples. |
| 157 | template <typename InputIterator1, typename InputIterator2> |
| 158 | double Wilcoxon(InputIterator1 xBegin, InputIterator1 xEnd, InputIterator2 yBegin, InputIterator2 yEnd) { |
| 159 | return WilcoxonWithSign(xBegin, xEnd, yBegin, yEnd).PValue; |
| 160 | } |
| 161 | |
| 162 | //! Wilcoxon test for the difference between two samples. |
| 163 | template <typename InputIterator> |
no test coverage detected