MCPcopy Create free account
hub / github.com/catboost/catboost / MannWhitney

Function MannWhitney

library/cpp/statistics/statistics.h:129–131  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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>

Callers

nothing calls this directly

Calls 1

MannWhitneyWithSignFunction · 0.85

Tested by

no test coverage detected