Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork66
⚡ Single-pass algorithms for statistics
License
NotificationsYou must be signed in to change notification settings
joshday/OnlineStats.jl
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
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 |
---|---|---|---|---|
import PkgPkg.add("OnlineStats")using OnlineStats# Create several statisticso=Series(Mean(),Variance(),Extrema())# Update with single data pointfit!(o,1.0)# Iterate through and update with lots of datafit!(o,randn(10^6))# Get the values of the statisticsvalue(o)# (value(mean), value(variance), value(extrema))
- Pull requests are very welcome!
- For major changes, you'll probably want to first discuss the changes via issue/email/slack with
@joshday
.
- Primary Author:Josh Day (@joshday)
- Significant early contributions fromTom Breloff (@tbreloff)
- Many algorithms developed under mentorship ofHua Zhou (@Hua-Zhou)
See also the list ofcontributors to OnlineStats.
About
⚡ Single-pass algorithms for statistics
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Sponsor this project
Uh oh!
There was an error while loading.Please reload this page.
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.