Searched defs:OutlierClassification (Results 1 – 1 of 1) sorted by relevance
5390 struct OutlierClassification { struct5391 int samples_seen = 0;5392 int low_severe = 0; // more than 3 times IQR below Q15393 int low_mild = 0; // 1.5 to 3 times IQR below Q15394 int high_mild = 0; // 1.5 to 3 times IQR above Q35395 int high_severe = 0; // more than 3 times IQR above Q35397 int total() const { in total()