Home

Awesome

<p align="center"> <img width="460" src="https://user-images.githubusercontent.com/8075494/185400143-1b9494b7-f5ed-41ee-8a25-b0c82a27a638.png"> </p> <p align="center"> <strong>Online Algorithms for Statistics, Models, and Big Data Viz</strong> </p> <p align="center"> <img width="550" style="border-radius: 5px;" src="https://user-images.githubusercontent.com/8075494/111988551-07ed4200-8ae7-11eb-985e-2ea5f60273ff.gif"> </p>
DocsBuildTestCitationDependents
Build statuscodecovDOIdeps
<br>

🚀 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))
<br>

📖 Documentation

<br>

✨ Contributing

<br>

✏️ Authors

See also the list of contributors to OnlineStats.

<a href="https://github.com/joshday/onlinestats.jl/graphs/contributors"> <img src="https://contrib.rocks/image?repo=joshday/onlinestats.jl" /> </a>