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

Class TStatTestResult

library/cpp/statistics/detail.h:14–22  ·  view source on GitHub ↗

Statistics result information.

Source from the content-addressed store, hash-verified

12namespace NStatistics {
13 //! Statistics result information.
14 struct TStatTestResult {
15 double PValue; /*! pValue test */
16 int Sign; /*! The sign of the deviation of the old sample from the new one */
17 TStatTestResult(double pValue = 0, int sign = 0)
18 : PValue(pValue)
19 , Sign(sign)
20 {
21 }
22 };
23
24 namespace NDetail {
25 //! To retrieve underlying type from TKahanAccumulator from library/cpp/accurate_accumulate

Callers 3

MannWhitneyWithSignFunction · 0.85
WilcoxonWithSignFunction · 0.85
WilcoxonTestWithSignFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected