joshday / OnlineStats.jl

⚡ Single-pass algorithms for statistics
https://joshday.github.io/OnlineStats.jl/latest/
MIT License
831 stars 62 forks source link
big-data julia julia-language julialang online-algorithms onlinestats statistics stochastic-approximation streaming-data

Online Algorithms for Statistics, Models, and Big Data Viz

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


✏️ Authors

See also the list of contributors to OnlineStats.