[![Arduino CI](https://github.com/RobTillaart/Statistic/workflows/Arduino%20CI/badge.svg)](https://github.com/marketplace/actions/arduino_ci) [![Arduino-lint](https://github.com/RobTillaart/Statistic/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/Statistic/actions/workflows/arduino-lint.yml) [![Arduino-lint](https://github.com/RobTillaart/Statistic/actions/workflows/arduino-lint.yml/badge.svg)](https://github.com/RobTillaart/Statistic/actions/workflows/arduino-lint.yml) [![License: MIT](https://img.shields.io/badge/license-MIT-green.svg)](https://github.com/RobTillaart/Statistic/blob/master/LICENSE) [![GitHub release](https://img.shields.io/github/release/RobTillaart/Statistic.svg?maxAge=3600)](https://github.com/RobTillaart/Statistic/releases) # Statistic Header-only statistic library for Arduino includes sum, average, variance and standard deviation. The `statistic::Statistic` class template accepts 3 arguments: * **`typename T`:** The floating point type used to represent the statistics. * **`typename C`:** The unsigned integer type to store the number of values. * **`typename _useStdDev`:** Compile-time flag for using variance and standard deviation. To maintain backwards compatibility with API <= 0.4.4, the `Statistic` class implementation has been moved to the `statistic` namespace and a `typedef statistic::Statistic Statistic` type definition has been created at global scope. The `useStdDev` boolean was moved from a run-time to a compile-time option for two reasons. First, the compile-time option allows the optimizer to eliminate dead code (calculating standard deviation and variances) for a slightly smaller code size. Second, it was observed in uses of the library that the `useStdDev` boolean was set once in the class constructor and was never modified at run-time. ## Description The statistic library is made to get basic statistical information from a one dimensional set of data, e.g. a stream of values of a sensor. The stability of the formulas is improved by the help of Gil Ross (Thanks!). The template version (1.0.0) is created by Glen Cornell (Thanks!). ## Interface - **Statistic(void)** Default constructor. - **statistic::Statistic** Constructor, with value type, count type, and standard deviation flag. The types mentioned are the defaults of the template. You can override e.g. **statistic::Statistic** for many high precision values. (assumes double >> float). - **void clear()** resets all internal variables and counters. - **typename T add(const typename T value)** returns value actually added to internal sum. If this differs from what should have been added, or even zero, the internal administration is running out of precision. If this happens after a lot of **add()** calls, it might become time to call **clear()**. Alternatively one need to define the statistic object with a more precise data type (typical double instead of float). - **typename C count()** returns zero if count == zero (of course). Must be checked to interpret other values. - **typename T sum()** returns zero if count == zero. - **typename T minimum()** returns zero if count == zero. - **typename T maximum()** returns zero if count == zero. - **typename T average()** returns NAN if count == zero. These three functions only work if **useStdDev == true** (in the template). - **variance()** returns NAN if count == zero. - **pop_stdev()** returns NAN if count == zero. pop_stdev = population standard deviation, - **unbiased_stdev()** returns NAN if count == zero. Deprecated methods: - **Statistic(bool)** Constructor previously used to enable/disable the standard deviation functions. This argument now has no effect. It is recommended to migrate your code to the default constructor (which now also implicitly calls `clear()`). - **void clear(bool)** resets all variables. The boolean argument is ignored. It is recommended to migrate your code to `clear()` (with no arguments). ## Operational See examples. ## Faq See faq.md ## Future - update documentation - links that explain statistics in more depth - return values of **sum(), minimum(), maximum()** when **count()** == zero - should these be NaN, which is technically more correct? - for now user responsibility to check **count()** first. - add **expected average EA** compensation trick - every add will subtract EA before added to sum, - this will keep the **\_sum** to around zero. - this will move **average()** to around zero. - do not forget to add **EA** to average. - does not affect the **std_dev()**