|
QWT API (English) 7.0.1
Qt Widget Library for Technical Applications - English API Documentation
|
Helper class for computing boxplot statistics from raw data. More...
#include <qwt_box_statistics.h>
Public Types | |
| enum | WhiskerMethod { Tukey , Percentile , MinMax , StandardDeviation , StandardError } |
| Whisker calculation method . More... | |
Public Member Functions | |
| QwtBoxStatisticsCalculator () | |
| Constructor with default Tukey method. | |
| void | setWhiskerMethod (WhiskerMethod method) |
| Set whisker calculation method. | |
| WhiskerMethod | whiskerMethod () const |
| Get whisker calculation method. | |
| void | setWhiskerCoefficient (double coeff) |
| Set whisker coefficient (1.5 for Tukey, percentile for Percentile method) | |
| double | whiskerCoefficient () const |
| Get whisker coefficient. | |
Static Public Member Functions | |
| static QwtBoxSample | calculate (double position, const QVector< double > &sortedData, WhiskerMethod method=Tukey, double coefficient=1.5) |
| Compute QwtBoxSample from sorted data. | |
| static QwtBoxSample | calculateFromRaw (double position, const QVector< double > &rawData, WhiskerMethod method=Tukey, double coefficient=1.5) |
| Compute QwtBoxSample from unsorted data (sorts internally) | |
| static QVector< double > | extractOutliers (const QwtBoxSample &sample, const QVector< double > &sortedData) |
| Extract outliers given box sample and sorted data. | |
| static void | calculateFull (double position, const QVector< double > &rawData, QwtBoxSample &sample, QwtBoxOutlierSample &outliers, WhiskerMethod method=Tukey, double coefficient=1.5) |
| Compute full statistics (sample + outliers) in one call. | |
Helper class for computing boxplot statistics from raw data.
Whisker calculation method .
| QwtBoxStatisticsCalculator::QwtBoxStatisticsCalculator | ( | ) |
Constructor with default Tukey method.
|
static |
Compute QwtBoxSample from sorted data.
Compute boxplot statistics from sorted data.
|
static |
Compute QwtBoxSample from unsorted data (sorts internally)
Compute boxplot statistics from unsorted raw data.
|
static |
Compute full statistics (sample + outliers) in one call.
Compute full boxplot statistics including outliers.
|
static |
Extract outliers given box sample and sorted data.
Extract outlier values from sorted data based on box sample.
| void QwtBoxStatisticsCalculator::setWhiskerCoefficient | ( | double | coeff | ) |
Set whisker coefficient (1.5 for Tukey, percentile for Percentile method)
Set the whisker coefficient.
| void QwtBoxStatisticsCalculator::setWhiskerMethod | ( | WhiskerMethod | method | ) |
Set whisker calculation method.
Set the whisker calculation method.
| double QwtBoxStatisticsCalculator::whiskerCoefficient | ( | ) | const |
Get whisker coefficient.
Get the whisker coefficient.
| QwtBoxStatisticsCalculator::WhiskerMethod QwtBoxStatisticsCalculator::whiskerMethod | ( | ) | const |
Get whisker calculation method.
Get the whisker calculation method.