Online Algorithms for Statistics, Models, and Big Data Viz

  • โšก High-performance single-pass algorithms for statistics and data viz.
  • โž• Updated one observation at a time.
  • โœ… Algorithms use O(1) memory.
  • ๐Ÿ“ˆ Perfect for streaming and big data.

Docs Build Test Citation Dependents
Build Status codecov DOI deps

๐Ÿš€ Quickstart

import Pkg

Pkg.add("OnlineStats")

using OnlineStats

# Create several statistics
o = Series(Mean(), Variance(), Extrema())

# Update with single data point
fit!(o, 1.0)

# Iterate through and update with lots of data
fit!(o, randn(10^6))

# Get the values of the statistics
value(o)  # (value(mean), value(variance), value(extrema))

๐Ÿ“– Documentation

โœจ 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.