npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

standard-deviation-stream

v0.0.3

Published

A basic method for calculating standard deviation on the fly from a stream of numbers.

Downloads

22

Readme

standard-deviation-stream

A Node.js method for finding the standard deviation of numbers arriving in a stream. Based on Donald Knuth's solution in Art of Computer Programming as described by John D. Cook.

Basic Example

Just get the standard deviation on some numbers.

var DeviationStream = require('standard-deviation-stream');

var numbers = new DeviationStream();

numbers.push(10);
numbers.push(15);
numbers.push(20);
numbers.push(25);

console.log('Count: '+numbers.count());
console.log('Mean: '+numbers.mean());
console.log('Variance: '+numbers.variance());
console.log('Standard Deviation: '+numbers.standardDeviation());

numbers.clear();

Redis Enhanced Example

If you are fetching a stream of numbers in batches it can be useful to save the state of the standard deviation stream between batches.

For example lets say you have a web endpoint that returns results from a database collection in pages of 100 at a time, and needs to calculate standard deviation on the results. With the redis enhanced style you can fetch 100 items, calculate standard deviation on that page of 100 results, and cache the stream data.

Now the next time the web endpoint is called to fetch the next page of 100 results you can restore from cache and continue calculating the standard deviation on the next 100 items, taking into account the mean and variance of the first 100 items that you fetched in the previous request.

var async = require('async');
var DeviationStream = require('standard-deviation-stream');

var numbers = new DeviationStream('someResults', redisConnection);

async.series(
	[
		function (done) {
			numbers.restore(done);
		},

		function (done) {
			numbers.push(10);
			numbers.push(15);
			numbers.push(20);
			numbers.push(25);
			numbers.save(done);
		}
	],
	function () {
		console.log('Done');
	}
);

By default the save function stores the standard deviation stream data in a Redis key with an expiration of one hour. This allows you to continue adding more items to a stream based on that key at any time within an hour.

Installation & Testing

npm install standard-deviation-stream
npm test

To run the tests on the Redis enhanced capability you'll need to be running Redis locally on port 6379