lib-online-statistics

3.0.1 • Public • Published

A simple class for tracking mean, variance and standard deviation in an online fashion.

Example use

const OnlineStatistics = require('lib-online-statistics');
const o = new OnlineStatistics();
o.observe(1);
console.log(o.mean()); // prints 1
o.observe(2);
console.log(o.mean()); // prints 1.5

Available methods on the object are observe(record) - observe a new data point.

mean() - get the mean so far.

variance(sample = false) - get the variance so far (sample or population).

standardDeviation(sample = false) - get the corrected standard deviation (sample or population).

Can be serialized with JSON.stringify and provides a fromJSON method.

Readme

Keywords

none

Package Sidebar

Install

npm i lib-online-statistics

Weekly Downloads

1

Version

3.0.1

License

MIT

Last publish

Collaborators

  • gburtini
  • strawhouse