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
Outlier values for a single boxplot position.
Definition qwt_samples.h:680
Sample for box-and-whisker plot (boxplot) visualization.
Definition qwt_samples.h:534
Helper class for computing boxplot statistics from raw data.
Definition qwt_box_statistics.h:34
WhiskerMethod
Whisker calculation method .
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