12#ifndef QWT_BOX_STATISTICS_H
13#define QWT_BOX_STATISTICS_H
15#include "qwt_global.h"
16#include "qwt_samples.h"
66 void setWhiskerMethod(WhiskerMethod method);
69 WhiskerMethod whiskerMethod()
const;
72 void setWhiskerCoefficient(
double coeff);
75 double whiskerCoefficient()
const;
81 WhiskerMethod method = Tukey,
82 double coefficient = 1.5);
88 WhiskerMethod method = Tukey,
89 double coefficient = 1.5);
97 static void calculateFull(
102 WhiskerMethod method = Tukey,
103 double coefficient = 1.5);
124 WhiskerMethod m_method;
125 double m_coefficient;
Definition qwt_clipper.h:40
单个箱线图位置的异常值
Definition qwt_samples.h:680
箱线图(boxplot)样本
Definition qwt_samples.h:534
从原始数据计算箱线图统计量的辅助类
Definition qwt_box_statistics.h:34
WhiskerMethod
须须计算方法
Definition qwt_box_statistics.h:45
@ MinMax
Min/Max method: whiskers at actual data min/max
Definition qwt_box_statistics.h:53
@ StandardDeviation
Standard deviation method: whiskers at mean ± coeff×SD
Definition qwt_box_statistics.h:56
@ Percentile
Percentile method: whiskers at specified percentile range
Definition qwt_box_statistics.h:50
@ Tukey
Tukey's method: whiskers extend to 1.5×IQR from Q1/Q3 (default)
Definition qwt_box_statistics.h:47