close
The Wayback Machine - https://web.archive.org/web/20210202013013/https://github.com/joshday/OnlineStats.jl
Skip to content
master
Go to file
Code

Files

Permalink
Failed to load latest commit information.

README.md

Image

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.

Image

Docs Build Test Citation
Image Image Build Status codecov DOI

Quickstart

import Pkg

Pkg.add("OnlineStats")

using OnlineStats

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

fit!(o, 1.0)

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

Documentation

Image Image

Contributing

  • Trivial PRs such as fixing typos are very welcome!
  • For nontrivial changes, you'll probably want to first discuss the changes via issue/email/slack with @joshday.

Authors

See also the list of contributors to OnlineStats.

License

MIT

Packages Using OnlineStats/OnlineStatsBase

See JuliaHub:

deps