Statistics result information.
| 12 | namespace 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 |
no outgoing calls
no test coverage detected