Releases: adknudson/RunningStatistics
release-3.1.0
- Added overloads for
CountMap.MinKeyandCountMap.MaxKeythat acceptIComparerobjects - Added a
Quantilemethod forCountMap
What's Changed
- Refactored the MinKey and MaxKey methods to accept an IComparer by @adknudson in #3
- Added quantile method for CountMap by @adknudson in #4
New Contributors
- @adknudson made their first contribution in #3
Full Changelog: release-3.0.0...release-3.1.0
release-3.0.0
- Split the interface into 3 parts to have an observation-agnostic interface
- This allows for collections of running statistics that can have mixed observation types and mixed concrete types
- Removed support for .NET 6.0 since it has reached EOL
- Bug fixes for
Extrema<T> - Improved test coverage
Full Changelog: release-2.0.1...release-3.0.0
release-2.0.1
Full Changelog: release-2.0.0...release-2.0.1
release-2.0.0
Re-introduces the IRunningStatistic interface and overhauls the RunningStatisticBase class (Formerly AbstractRunningStatistic) to handle more boilerplate. Greatly enhanced the unit tests and added more examples. Statistics also guard against illegal values to ensure as little unexpected behavior as possible.
Full Changelog: release-1.1.1...release-2.0.0
release-1.1.1
Fixed bug with Mean where merging an empty Mean propagated NaNs.
release-1.1.0
Added the Beta distribution running statistic, which keeps track of the number of successes and the number of failures.
release-1.0.0
Initial 1.0.0 release! The API will be considered locked down until a v2 release.