Socket
Socket
Sign inDemoInstall

stats-incremental

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stats-incremental

A simple tool for calculating incremental stats on numeric streams.


Version published
Weekly downloads
434
increased by9.87%
Maintainers
1
Weekly downloads
 
Created
Source

stats-incremental

NPM

A light statstical package for incremental (i.e. rolling, streaming) sets of numbers.

E.g. given a source of numbers of unknown length that you would like to at any given time know any of:

  • count
  • min
  • max
  • sum
  • variance
  • standard_deviation

This module can be used either with Node streams via a wrapper such as through2 or without being streaming.

Example

Non-streaming:

var Stats = require("stats-incremental")

var dice = require("dice")
var s = Stats()

var rolls = []
for (var i = 0; i < 100; i++) {
  s.update(dice.sum(dice.roll("2d6")))
  console.log(s.getAll())
}

/* E.g.
  { n: 97,
  min: 2,
  max: 12,
  sum: 673,
  mean: 6.938144329896907,
  variance: 5.851843979168881,
  standard_deviation: 2.419058490233107 }
*/


console.log(s.mean)
console.log(s.standard_deviation)

With streams:

var spigot = require("stream-spigot")
var through2 = require("through2")
var terminus = require("terminus")

var Stats = require("stats-incremental")
var s = Stats()

var statStream = through2.obj(function (chunk, encoding, callback) {
  s.update(chunk)
  if (s.n % 100000 === 0) {
    console.log(s.getAll())
  }
  this.push(chunk)
  callback()
})

spigot.sync({objectMode: true}, Math.random)
  .pipe(statStream)
  .pipe(terminus.devnull({objectMode: true}))

/*
  { n: 100000,
    min: 2.0884908735752106e-7,
    max: 0.9999937505926937,
    sum: 49861.06196602131,
    mean: 0.49861061966021336,
    variance: 0.08331362954827709,
    standard_deviation: 0.28864100462040576 }
  { n: 200000,
    min: 2.0884908735752106e-7,
    max: 0.9999937505926937,
    sum: 99904.73041411326,
    mean: 0.49952365207056687,
    variance: 0.08316120223669865,
    standard_deviation: 0.2883768406732736 }
*/

API

var stats = require("stats-incremental")()

Create a new incremental stats aggregator.

stats.update(value)

Update the aggregator with a value. Converted to a Number via parseFloat. If this results in NaN the update is skipped.

stats.getAll()

Get a up-to-date clone of all of the stats stored.

E.g.

{ n: 97,
  min: 2,
  max: 12,
  sum: 673,
  mean: 6.938144329896907,
  variance: 5.851843979168881,
  standard_deviation: 2.419058490233107 }

stats.n

The count of observations.

stats.min

The min value observed.

stats.max

The max value observed.

stats.sum

The sum of all values observed.

stats.mean

The arithmetic mean of the observations.

stats.variance

The variance from the mean.

stats.standard_deviation

The standard deviation of the values from the mean.

Alternatives

stats-lite Operates on complete sets of numbers.

stream-statistics Is a similar module dedicated to streams.

LICENSE

MIT

Keywords

FAQs

Package last updated on 03 Sep 2014

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc