Searched defs:OutlierClassification (Results 1 – 1 of 1) sorted by relevance
5454 struct OutlierClassification { struct5455 int samples_seen = 0;5456 int low_severe = 0; // more than 3 times IQR below Q15457 int low_mild = 0; // 1.5 to 3 times IQR below Q15458 int high_mild = 0; // 1.5 to 3 times IQR above Q35459 int high_severe = 0; // more than 3 times IQR above Q35461 int total() const { in total()