streaming-stats 0.1.12

Experimental crate for computing basic statistics on streams.
docs.rs failed to build streaming-stats-0.1.12
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: streaming-stats-0.2.3

An experimental library that provides some common statistical functions with some support for computing them efficiently on streams of data. The intent is to permit parallel computation of statistics on large data sets.

Build status

Licensed under the UNLICENSE.

Documentation

Some documentation exists here: http://burntsushi.net/rustdoc/stats/.

Installation

This crate works with Cargo. Assuming you have Rust and Cargo installed, simply check out the source and run tests:

git checkout git://github.com/BurntSushi/rust-stats
cd rust-stats
cargo test

You can also add rust-stats as a dependency to your project's Cargo.toml:

[dependencies.rust-stats]
git = "git://github.com/BurntSushi/rust-stats"