alesasse / OnlineStats.jl

Single-pass algorithms for statistics

Home Page:https://joshday.github.io/OnlineStats.jl/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Online Algorithms for Statistics, Models, and Big Data Viz

Online algorithms are well suited for streaming data or when data is too large to hold in memory. OnlineStats processes observations one by one and all algorithms use O(1) memory.

Docs Build Test
Build Status Build status codecov

Quickstart

import Pkg

Pkg.add("OnlineStats")

using OnlineStats

o = Series(Mean(), Variance(), P2Quantile(), Extrema())

fit!(o, randn(10^6))

Documentation

Contributing

When contributing to OnlineStats, trivial PRs like documentation typos are very welcome! For nontrivial changes, please first discuss the change you wish to make via issue/email/slack with @joshday.

Authors

See also the list of contributors to OnlineStats.

License

OnlineStats is licensed under the MIT License - see the LICENSE.md file for details.

About

Single-pass algorithms for statistics

https://joshday.github.io/OnlineStats.jl/latest/

License:Other


Languages

Language:Julia 100.0%