harsha2010 / 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

  • ⚡ 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

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

fit!(o, 1.0)

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

📖 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.

About

⚡ Single-pass algorithms for statistics ⚡

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

License:MIT License


Languages

Language:Julia 100.0%