analysationmodes.h File Reference
Go to the source code of this file.
|
Enumerations |
| enum | AnalysationMode {
AM_AVG,
AM_MED,
AM_MIN,
AM_MAX,
AM_RANGE,
AM_Q1,
AM_Q3,
AM_WHISKER,
AM_W1,
AM_W3,
AM_IQR,
AM_NUM_EXT,
AM_EXT,
AM_BEST
} |
| | usage of the statistictools with different analysation modes modes (examples): More...
|
Enumeration Type Documentation
usage of the statistictools with different analysation modes modes (examples):
analysation modes of statistical types. If you add a analysation mode, you have naturally to implement this analysation mode in statisticmeasure.cpp - see method StatisticMeasure::step() !
- Enumerator:
-
| AM_AVG |
returns the average value |
| AM_MED |
returns the median value |
| AM_MIN |
returns the minimum value |
| AM_MAX |
returns the maximum value |
| AM_RANGE |
returns the range of the values |
| AM_Q1 |
returns the quartile Q_(1/4) value |
| AM_Q3 |
returns the quartile Q_(3/4) value |
| AM_WHISKER |
returns the whisker (1.5*IQR) value |
| AM_W1 |
returns the whisker1 value |
| AM_W3 |
returns the whisker3 value |
| AM_IQR |
returns the inter quartile range (IQR) value |
| AM_NUM_EXT |
returns the count of extreme values |
| AM_EXT |
returns the special extreme value |
| AM_BEST |
returns the best value |