Releases: joshday/OnlineStats.jl
Releases · joshday/OnlineStats.jl
Release list
Move Series into OnlineStatsBase
v0.11.1 bump OnlineStatsBase version
Change to weights
v0.10.1
v0.10.0
Fix for name collision between LearnBase and Distributions
v0.9.1 fix tests and add merge method for MV
v0.9.0
Reorganization for Julia 0.6
Changes:
- Remove Weight types from individual OnlineStats
- New type Series now tracks 1) Weight and 2) an OnlineStat or a tuple of OnlineStats
- Most usage of OnlineStats should be done through Series
- All new tests (more/better coverage)
- updated docs
- Change abstract type
OnlineStat{I}toOnlineStat{I, O}Iis input dimension of data (0=scalar, 1=vector, etc.)Ois the number of dimensions of the output (value(s))
- Vastly simplified Bootstrap code.
- Removing
Means,Variances, etc. in favor of a newMVtypeMeans(5)is nowMV(5, Mean())
Last release before making the switch to 0.6
Bug fixes and a few small features added since the last release.