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

Function Wilcoxon

library/cpp/statistics/statistics.h:158–160  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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>

Callers 1

UpdatePValueMethod · 0.85

Calls 1

WilcoxonWithSignFunction · 0.85

Tested by

no test coverage detected