• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

src/H03-May-2022-941704

.cargo-checksum.jsonH A D03-May-202289 11

.gitignoreH A D09-Jul-201676 98

.travis.ymlH A D09-Jul-201615 21

COPYINGH A D09-Jul-2016126 42

Cargo.tomlH A D01-Jan-19701 KiB2926

Cargo.toml.orig-cargoH A D22-Mar-2018523 1815

LICENSE-MITH A D09-Jul-20161.1 KiB2217

MakefileH A D09-Jul-2016250 149

README.mdH A D22-Mar-2018773 2515

UNLICENSEH A D09-Jul-20161.2 KiB2520

ctags.rustH A D09-Jul-2016902 1211

session.vimH A D09-Jul-201656 21

README.md

1An experimental library that provides some common statistical functions with
2some support for computing them efficiently on *streams* of data. The intent
3is to permit parallel computation of statistics on large data sets.
4
5[![Build status](https://api.travis-ci.org/BurntSushi/rust-stats.png)](https://travis-ci.org/BurntSushi/rust-stats)
6[![](http://meritbadge.herokuapp.com/streaming-stats)](https://crates.io/crates/streaming-stats)
7
8Dual-licensed under MIT or the [UNLICENSE](http://unlicense.org).
9
10
11### Documentation
12
13Some documentation exists here:
14[https://docs.rs/streaming-stats](https://docs.rs/streaming-stats).
15
16
17### Installation
18
19Simply add `streaming-stats` as a dependency to your project's `Cargo.toml`:
20
21```toml
22[dependencies]
23streaming-stats = "0.1"
24```
25